MKMapView 缩放以显示框架中的所有注释
Posted
技术标签:
【中文标题】MKMapView 缩放以显示框架中的所有注释【英文标题】:MKMapView zoom to show all annotations in frame 【发布时间】:2015-01-21 16:59:40 【问题描述】:我有一个全屏地图,我想缩放到所有注释都在地图上可见的级别,但仅在应用程序的内容区域中可见,如下图所示:
如您所见,地图填满了整个屏幕,但是,顶部和底部覆盖了覆盖地图的矩形。内容区域是亮绿色的部分。给定一组注释,我希望能够缩放地图,以便所有内容在绿色内容区域内可见,而不是在地图的实际框架内。
我在这里使用这个(类别)方法,它执行缩放以适应地图框架的默认任务。但是我在如何修改它以仅考虑内容区域时陷入困境:
- (void)zoomToShowAnnotations:(NSArray *)annotations extraPaddingMultiplier:(CGFloat)multiplier
CLLocationCoordinate2D topLeftCoord;
topLeftCoord.latitude = -90;
topLeftCoord.longitude = 180;
CLLocationCoordinate2D bottomRightCoord;
bottomRightCoord.latitude = 90;
bottomRightCoord.longitude = -180;
for(id<MKAnnotation> annotation in annotations)
topLeftCoord.longitude = fmin(topLeftCoord.longitude, annotation.coordinate.longitude);
topLeftCoord.latitude = fmax(topLeftCoord.latitude, annotation.coordinate.latitude);
bottomRightCoord.longitude = fmax(bottomRightCoord.longitude, annotation.coordinate.longitude);
bottomRightCoord.latitude = fmin(bottomRightCoord.latitude, annotation.coordinate.latitude);
MKCoordinateRegion region;
region.center.latitude = topLeftCoord.latitude - (topLeftCoord.latitude - bottomRightCoord.latitude) * 0.5;
region.center.longitude = topLeftCoord.longitude + (bottomRightCoord.longitude - topLeftCoord.longitude) * 0.5;
region.span.latitudeDelta = fabs(topLeftCoord.latitude - bottomRightCoord.latitude) * (multiplier != 0 ? multiplier : 1); // Add a little extra space on the sides
region.span.longitudeDelta = fabs(bottomRightCoord.longitude - topLeftCoord.longitude) * (multiplier != 0 ? multiplier : 1); // Add a little extra space on the sides
[self setRegion:region animated:YES];
【问题讨论】:
setVisibleMapRect:edgePadding:animated 方法应该使这更容易。 【参考方案1】:根据文档,这种方法应该适用于工作。
// Position the map such that the provided array of annotations are all visible to the fullest extent possible.
@available(ios 7.0, *)
open func showAnnotations(_ annotations: [MKAnnotation], animated: Bool)
您必须设置一个注释数组并将其放入这样的函数中
let annotation = MKPointAnnotation()
annotation.coordinate = CLLocationCoordinate2D(latitude: 11.12, longitude: 12.11)
mapView.addAnnotation(annotation)
mapView.showAnnotations([annotation], animated: true)
【讨论】:
【参考方案2】:这只是一个步骤列表,没有实际代码或任何东西。
-
计算您找到的区域的纵横比。
如果纵横比相对宽于(或等于)您所需的比例,请转到第 5 步。
构建一个适合您现有区域的新区域,其纵横比与您所需的比率相匹配(扩大宽度)。
在屏幕内构建一个适合您扩展区域的新区域(扩展高度)。
聚会结束。
【讨论】:
如何计算 MKCoorindateRegion 的纵横比? span.latitudeDelta/span.longitudeDelta? 我将如何在第 2 步中确定我的“所需比例”? 我不确定从球形纬度/经度到您的屏幕的投影,这就是我不想包含代码的原因。作为猜测,您可以尝试 deltas 的比率,看看会发生什么。您想要的比例是您的地图在屏幕上完全可见的区域的比例。您可以从屏幕大小的面积减去任何叠加层大小来计算此比率。 如果我要使用 contentArea 框架创建一个新的 MKMapView 实例并在该新地图上调用 regionThatFits: 会怎样?这在理论上不应该有效吗? 如果您有一个名为regionThatFits:
的方法和另一个名为 setVisibleMapRect:edgePadding:animated
的方法,只需将两者放在一起并指定您的 edgePadding
以合并叠加视图的大小。以上是关于MKMapView 缩放以显示框架中的所有注释的主要内容,如果未能解决你的问题,请参考以下文章
当我缩放 mapView 以显示我的注释时,选定的注释部分不在屏幕上