3
攝像頭在我的Android應用程序,我有以下代碼...中心在谷歌地圖V2
CameraUpdate center= CameraUpdateFactory.newLatLng(new LatLng(Lat,Lon));
DebugLog.debugLog("centered camera on " + Lat + " and " + Lon, false);
CameraUpdate zoom=CameraUpdateFactory.zoomTo(15);
map.moveCamera(center);
map.animateCamera(zoom);
map.addMarker(new MarkerOptions()
.position(new LatLng(Lat, Lon))
.title("Phone Location")
);
(Lat)爲31.7898 經度爲-111.0354
標記是恰好在正確的位置。然而,相機位於v2地圖上該位置以北約5英里處。 爲什麼? 感謝 加里
嘗試做兩個中心,在一個操作中的變焦,而不是兩個。 – CommonsWare
只是爲了顯示如何做到這一點的例子:\t \t map.animateCamera(CameraUpdateFactory.newLatLngZoom(位置, \t \t \t \t 15)); – cYrixmorten