作为标题,在地图 v1 中我可以使用
mapController.zoomToSpan(..., ..., ...);
包括屏幕上的所有标记。
剂量图V2有同样的方法吗?
2013/2/22 编辑:
首先,获取您想要在屏幕上涉及的所有 LatLng 点。
假设您有 3 个 LatLng 点,请使用
LatLngBounds bounds = new LatLngBounds.Builder().include(point1)
.include(point2).include(point3).build();
mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 50));