5

当有多个叠加层添加到地图时,我遇到了自定义 MKOverlayView 和标准 MKPolygonView 在某些缩放级别被裁剪的问题。

两次双击缩放级别的阿尔及利亚叠加层。

三个双击缩放级别的阿尔及利亚叠加层。注意剪辑。

几点观察:

  • 无论我是使用自定义 MKOverlayView 还是返回具有相同多边形的 MKPolygonView,都会发生这种情况。
  • 如果我只绘制一个叠加层,则不会出现此问题。
  • 这不会发生在所有叠加层上——只有一些。

就代码而言:这会将覆盖添加到 NSMutableArray (borderOverlays),然后在其他地方访问它以加载特定国家 ID 的覆盖。minX/minY/maxX/maxY 是纬度/经度值;多边形是从 ESRI shapefile 构造的路径。

CLLocationCoordinate2D mbrMin = CLLocationCoordinate2DMake(minY, minX);
CLLocationCoordinate2D mbrMax = CLLocationCoordinate2DMake(maxY, maxX);
MKMapPoint minPoint = MKMapPointForCoordinate(mbrMin);
MKMapPoint maxPoint = MKMapPointForCoordinate(mbrMax);
MKMapSize size = MKMapSizeMake(maxPoint.x - minPoint.x, maxPoint.y - minPoint.y);
MKMapRect rect = MKMapRectMake(minPoint.x, minPoint.y, size.width, size.height);

if ( spans180 ) {
    rect = MKMapRectMake(minPoint.x, minPoint.y, MKMapSizeWorld.width * 2, size.height);
}

CustomMKOverlay* overlay = [[CustomMKOverlay alloc] initWithPolygon:polygon withBoundingMapRect:rect];
[borderOverlays addObject:overlay];

叠加层通过以下方式添加到地图中:

[mapView addOverlay:overlay];

viewForOverlay:

- (MKOverlayView *)mapView:(MKMapView*)aMapView viewForOverlay:(id<MKOverlay>)overlay
{
    if ( [overlay isKindOfClass:[CustomMKOverlay class]] ) {
        /* Note: the behaviour if this chunk is not commented is the exact same as below. 
        CustomMKOverlayView* overlayView = [[[CustomMKOverlayView alloc] initWithOverlay:overlay withMapView:aMapView] autorelease];
        [borderViews addObject:overlayView];
        return overlayView; */

        MKPolygonView* view = [[[MKPolygonView alloc] initWithPolygon:((CustomMKOverlay*)overlay).polygon] autorelease];
        view.fillColor = [((CustomMKOverlay*)overlay).colour colorWithAlphaComponent:0.5f];
        view.lineWidth = 5.0f;
        view.strokeColor = [UIColor blackColor];
        [borderViews addObject:view];
        return view;
    }
}

使用 MKPolygonView 时,没有绘图代码(示例所示)。不过,为了完成,这是我的自定义绘图代码,并且会出现同样的问题。轮廓通常绘制 - 这实际上是调试绘图,它在覆盖层的 boundingMapRect 周围绘制一个矩形并填充它而不用勾勒轮廓。

- (void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale inContext:(CGContextRef)context
{    
    CustomMKOverlay* overlay = (CustomMKOverlay*)self.overlay;

    CGRect clipRect = [self rectForMapRect:overlay.boundingMapRect];
    CGContextAddRect(context, clipRect);
    CGContextClip(context);

    UIColor* colour = [UIColor redColor];
    colour = [colour colorWithAlphaComponent:0.5f];
    CGContextSetFillColorWithColor(context, [colour CGColor]);
    CGRect fillRect = [self rectForMapRect:overlay.boundingMapRect];
    CGContextFillRect(context, fillRect);
}

可以说,在这一点上我有点难过 - 就好像正在加载的缩放平铺在覆盖上绘制。我已经介绍了有关 TileMap 和 HazardMap 的各种示例,但是由于我没有加载自己的地图图块,因此它们并不是很有帮助。

我可能错过了一些非常明显的东西。任何帮助,将不胜感激。如有必要,我很乐意提供更多代码/上下文。

4

1 回答 1

3

罪魁祸首似乎是:

CLLocationCoordinate2D mbrMin = CLLocationCoordinate2DMake(minY, minX);
CLLocationCoordinate2D mbrMax = CLLocationCoordinate2DMake(maxY, maxX);

MKOverlays 的边界矩形显然需要基于边界区域的西北/东南坐标,而不是西南/东北(这是 ESRI shapefile 存储其边界坐标的格式)。将违规代码更改为:

CLLocationCoordinate2D mbrMin = CLLocationCoordinate2DMake(maxY, minX);
CLLocationCoordinate2D mbrMax = CLLocationCoordinate2DMake(minY, maxX);

似乎解决了缩放和奇怪的轮廓异常的所有问题。我希望这对将来遇到这个问题的人有所帮助(如果没有,我想听听,因为这个解决方案对我来说是一种享受)。

另外:如果有人可以指出任何说明这一点的文档,我想看看。

于 2012-10-13T23:21:18.123 回答