0

我完美地设置了谷歌地图 v2,但我不知道如何设置当前位置的缩放级别(当前引脚)。如果您有任何想法,请与我分享。谢谢。

4

2 回答 2

1
GoogleMap theMap;

//in the below function pass your LatLang and the zoom level 
theMap.animateCamera(CameraUpdateFactory.newLatLngZoom(Your Pin LatLangPoint, 14));
于 2013-06-25T12:13:46.380 回答
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);
于 2013-06-25T12:24:26.683 回答