【发布时间】:2014-11-28 03:52:39
【问题描述】:
有没有办法确定缩放级别,以便我的所有标记都适合缩放级别?我正在使用 mapbox 0.4.0
我觉得答案和这个差不多,但是找不到android版本
[https://www.mapbox.com/mapbox.js/example/v1.0.0/markers-only-at-zoom-level/]
【问题讨论】:
有没有办法确定缩放级别,以便我的所有标记都适合缩放级别?我正在使用 mapbox 0.4.0
我觉得答案和这个差不多,但是找不到android版本
[https://www.mapbox.com/mapbox.js/example/v1.0.0/markers-only-at-zoom-level/]
【问题讨论】:
使用最新的 SDK 版本,现有答案不再适用。相反,使用这个:
LatLngBounds latLngBounds = new LatLngBounds.Builder()
.include(new LatLng(<marker 1 latlng position>))
.include(new LatLng(<marker 2 latlng position>))
.build();
mapboxMap.moveCamera(CameraUpdateFactory.newLatLngBounds(latLngBounds, 50));
感谢友好的 Mapbox 支持提供此答案:)
【讨论】:
好的,我想通了。我需要创建一个包含所有标记的边界框
final BoundingBox zoomLevel = findZoomLevel(hotelLocation,poiLocations);
mv.zoomToBoundingBox(zoomLevel,true,true);
.....
private BoundingBox findZoomLevel(LatLng hotelLocation, LatLng[] poiLocations) {
double bottomPadding = 0.002;
double topPadding = 0.005;
BoundingBox box = new BoundingBox(findTopMost(hotelLocation,poiLocations).getLatitude() + topPadding,
findRightMost(hotelLocation,poiLocations).getLongitude(),
findBottomMost(hotelLocation,poiLocations).getLatitude() - bottomPadding,
findLeftMost(hotelLocation,poiLocations).getLongitude());
return box;
}
更新
LatLngBounds latLngBounds = new LatLngBounds.Builder()
.include(new LatLng(lat1,lng1))
.include(new LatLng(lat2,lng2))
.build();
mapboxMap.moveCamera(
CameraUpdateFactory.newLatLngBounds(LatLngBounds bounds,
int paddingLeft,
int paddingTop,
int paddingRight,
int paddingBottom));
【讨论】: