如何放大/缩小地图视图以覆盖所有标记?
我正在审查sdk中给出的gmap V2的示例代码。它位于sdk \ extras \ google \ google_play_services \ samples \ maps。
提前致谢。
答案 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));