我想显示用户的当前位置,但没有转到屏幕右侧的我的位置图标。
通过致电:
实现mMap.setMyLocationEnabled(true)
是否有与MyLocationOverlay
api中的MapView
类似的内容。
答案 0 :(得分:1)
你的问题异常令人困惑。我将把它解释为“如何摆脱'转到我的位置图标'”。
在这种情况下,请尝试在getUiSettings().setMyLocationButtonEnabled(false)
对象上调用GoogleMap
。
答案 1 :(得分:0)
您是否尝试过animateto功能
MapView mapView = (MapView) findViewById(R.id.mapView);
MapController mc = mapView.getController();
String coordinates[] = {"currentLat", "currentLat"};
double lat = Double.parseDouble(coordinates[0]);
double lng = Double.parseDouble(coordinates[1]);
p = new GeoPoint(
(int) (lat * 1E6),
(int) (lng * 1E6));
mc.animateTo(p);
mc.setZoom(17); //Your zoom level in int
mapView.invalidate();