如何在 MapBox Android SDK 上使用 FitBounds?
How to use FitBounds on MapBox Android SDK?
MapBox GL JS 包含FitBounds 方法以某些点为中心,并调整缩放以适应(https://www.mapbox.com/mapbox-gl-js/api/#Map.fitBounds) 中的边界。但是,我似乎无法在 Android SDK API 文档中找到任何对此方法的引用。
有谁知道我可以如何利用 FitBounds() 或等效方法?
好问题。为此,您需要创建一个 LatLngBounds
,然后缩放到该位置。
所以使用最新的 SDK 版本 4.0.0,您可以使用以下代码实现此目的:
LatLngBounds latLngBounds = new LatLngBounds.Builder()
.include(first marker position)
.include(second marker position)
.build();
CameraUpdateFactory.newLatLngBounds(latLngBounds, 10);
您可以根据需要将任意数量的 LatLng
添加到边界框内。希望这对您有所帮助!
MapBox GL JS 包含FitBounds 方法以某些点为中心,并调整缩放以适应(https://www.mapbox.com/mapbox-gl-js/api/#Map.fitBounds) 中的边界。但是,我似乎无法在 Android SDK API 文档中找到任何对此方法的引用。
有谁知道我可以如何利用 FitBounds() 或等效方法?
好问题。为此,您需要创建一个 LatLngBounds
,然后缩放到该位置。
所以使用最新的 SDK 版本 4.0.0,您可以使用以下代码实现此目的:
LatLngBounds latLngBounds = new LatLngBounds.Builder()
.include(first marker position)
.include(second marker position)
.build();
CameraUpdateFactory.newLatLngBounds(latLngBounds, 10);
您可以根据需要将任意数量的 LatLng
添加到边界框内。希望这对您有所帮助!