面对在Android谷歌地图中设置动态缩放级别的问题。
类似于做地图应用程序(android的系统应用程序)。!
我使用下面的地图方法
mGoogleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(START_POINT,50)); mGoogleMap.animateCamera(CameraUpdateFactory.zoomTo(14.0f));
答案 0 :(得分:3)
使用以下代码:
mGoogleMap.animateCamera(CameraUpdateFactory.zoomTo(17),200, null);
这里有17个缩放级别,您可以更改它。
或尝试使用以下代码来涵盖所有要点
//Calculate the markers to get their position
LatLngBounds.Builder b = new LatLngBounds.Builder();
for (Marker m : markers) {
b.include(m.getPosition());
}
LatLngBounds bounds = b.build();
//Change the padding as per needed
CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, 25,25,5);
mMap.animateCamera(cu);