我想设置一个"收容边界框"为了让SKMapView不允许用户导航,例如,让我们说出德国边界框(我想要的容器的坐标)
我想我已经
了mapView:didChangeToRegion:
和
mapView:didStartRegionChangeFromRegion:
但我无法将之前的visibleRegion与新的visibleRegion进行比较。
关于如何管理它的任何想法?
感谢您的帮助
答案 0 :(得分:1)
这是你可以通过实现mapView来实现的:didChangeToRegion:
if (![self.bbox containsLocation:region.center] || region.zoomLevel < self.minZoom) {
SKCoordinateRegion allowedRegion = region;
if (region.center.latitude > self.bbox.topLeftCoordinate.latitude) {
allowedRegion.center.latitude = self.bbox.topLeftCoordinate.latitude;
} else if (region.center.latitude < self.bbox.bottomRightCoordinate.latitude) {
allowedRegion.center.latitude = self.bbox.bottomRightCoordinate.latitude;
}
if (region.center.longitude > self.bbox.bottomRightCoordinate.longitude) {
allowedRegion.center.longitude = self.bbox.bottomRightCoordinate.longitude;
} else if (region.center.longitude < self.bbox.topLeftCoordinate.longitude) {
allowedRegion.center.longitude = self.bbox.topLeftCoordinate.longitude;
}
if (region.zoomLevel < self.minZoom) {
allowedRegion.zoomLevel = self.minZoom;
}
mapView.visibleRegion = allowedRegion;
}
其中self.bbox是带有所需允许边界框的SKBoundingBox。 和self.minZoom是允许的最小缩放级别。
但这并不理想,原因有以下两点: 当你试图越过边界框边界时,地图会来回摆动。 边界框并不适合封闭一个国家。简化的多边形会更好。