我想顯示用戶的當前位置,但沒有去到我的位置圖標在屏幕右側。我如何擺脫谷歌地圖上的'去我的位置圖標'v2
這是通過調用實現:
mMap.setMyLocationEnabled(true)
是否有類似MyLocationOverlay
東西從MapView
API。
我想顯示用戶的當前位置,但沒有去到我的位置圖標在屏幕右側。我如何擺脫谷歌地圖上的'去我的位置圖標'v2
這是通過調用實現:
mMap.setMyLocationEnabled(true)
是否有類似MyLocationOverlay
東西從MapView
API。
你提的問題是非常令人困惑。我將把它解釋爲「我如何擺脫'去我的位置圖標'」。
在這種情況下,請嘗試在您的GoogleMap
對象上調用getUiSettings().setMyLocationButtonEnabled(false)
。
你試過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();
謝謝,正是我需要的。 – meh