我想获取 Google Map 框架右上角和左下角的 LatLng 以创建 LatLngBounds 。有可能这样做吗?

android - 从相机位置获取 LatLngBounds-LMLPHP

最佳答案

这可以使用 Map View API 轻松确定:

yourMapFragment.getMap().getProjection().getVisibleRegion().latLngBounds

docs 状态是:



或者,您也可以通过将 latLngBounds 替换为 farLeftfarRightnearLeftnearRight 来获得投影的各个角

在您的情况下,您可以简单地使用
LatLng bottomLeft =
yourMapFragment.getMap().getProjection().getVisibleRegion().nearLeft;

LatLng topRight =
yourMapFragment.getMap().getProjection().getVisibleRegion().farRight;

关于android - 从相机位置获取 LatLngBounds,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34578418/

10-10 13:38