在谷歌地图v2上安装缩放适合所有标记

时间:2013-05-07 08:43:53

标签: android google-maps-api-2

如何放大/缩小地图视图以覆盖所有标记?

我正在审查sdk中给出的gmap V2的示例代码。它位于sdk \ extras \ google \ google_play_services \ samples \ maps。

提前致谢。

1 个答案:

答案 0 :(得分:61)

尝试使用LatLngBounds

LatLngBounds.Builder builder = new LatLngBounds.Builder();
builder.include(Latlng1);
builder.include(Latlng2);
LatLngBounds bounds = builder.build();
map.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds, 20));