我完美地设置了谷歌地图v2,但我不知道如何设置当前地点的缩放级别(当前引脚)。如果您有任何想法,请与我分享。感谢。
答案 0 :(得分:1)
GoogleMap theMap;
//in the below function pass your LatLang and the zoom level
theMap.animateCamera(CameraUpdateFactory.newLatLngZoom(Your Pin LatLangPoint, 14));
答案 1 :(得分:1)
在我的情况下,我从数组中获取地理输出,你可以尝试类似的东西或修改代码,然后使用mapcontroller设置缩放级别
private MapController mapController;
GeoPoint[] mallCoords;
mallCoords = new GeoPoint[24];
mallCoords[0] = new GeoPoint(28701067, 77116834);//this is just an example
mapController.animateTo(mallCoords[0]);
mapController.setZoom(15);