2012-12-19 73 views

回答

1

你提的問題是非常令人困惑。我將把它解釋爲「我如何擺脫'去我的位置圖標'」。

在這種情況下,請嘗試在您的GoogleMap對象上調用getUiSettings().setMyLocationButtonEnabled(false)

+0

謝謝,正是我需要的。 – meh

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(); 
+0

它是一個不同的API,https://developers.google.com/maps/documentation/android/ MapView即將被棄用。 – meh

+0

對不起隊友。我從來沒有注意到它。如果我找到解決方案,我會更新,否則我將刪除我的答案。感謝您的更新,而不是downvoting;)... – san

+0

和謝謝你的回答,這可能是一個很好的解決方案:) – meh

相關問題