gpt4 book ai didi

android - 如何在 OSM(打开 map 街道)的 Android Studio 中画一条线(折线)?

转载 作者:搜寻专家 更新时间:2023-11-01 07:43:08 33 4
gpt4 key购买 nike

我想在 OSM 中的两点之间画一条线,但我找不到任何可以帮助我的东西。像 googlemap 中的 Polyline 之类的东西。

public class MainActivity extends Activity  {
private MapView mMapView;
private MapController mMapController;
public TextView textView;
public String longitude;
public String latitude;
public Drawable marker;
private ItemizedIconOverlay<OverlayItem> anotherItemizedIconOverlay;
ArrayList<OverlayItem> overlayItemArray;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.osm_main);
mMapView = (MapView) findViewById(mapview);
textView = (TextView) findViewById(R.id.textView);

mMapView.setTileSource(TileSourceFactory.DEFAULT_TILE_SOURCE);
mMapView.setBuiltInZoomControls(true);
mMapController = (MapController) mMapView.getController();
mMapController.setZoom(16);
Double latE6 = (52.507621 )* 1E6;
Double lngE6 = (13.407334 )* 1E6;
GeoPoint gPt = new GeoPoint(latE6.intValue(), lngE6.intValue());
mMapController.setCenter(gPt);
}
}

最佳答案

好吧...只需使用 osmdroid Polyline。

    GeoPoint gPt0 = new GeoPoint(52.507621d, 13.407334d);
GeoPoint gPt1 = new GeoPoint(52.527621d, 13.427334d);
Polyline line = new Polyline(this);
line .addPoint(gPt0);
line .addPoint(gPt1);
mMapView.getOverlays().add(line);

关于android - 如何在 OSM(打开 map 街道)的 Android Studio 中画一条线(折线)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51068005/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com