3

我正在将两个不同MKGeodesicPolyline的实例添加到MKMapView这样的实例中

CLLocation *LAX = [[CLLocation alloc] ...];
CLLocation *JFK = [[CLLocation alloc] ...];
CLLocation *LHR = [[CLLocation alloc] ...];

CLLocationCoordinate2D laxToJfkCoords[2] = {LAX.coordinate, JFK.coordinate};
CLLocationCoordinate2D jfkToLhrCoords[2] = {JFK.coordinate, LHR.coordinate};

MKGeodesicPolyline *laxToJfk = [MKGeodesicPolyline polylineWithCoordinates:laxToJfkCoords count:2];
MKGeodesicPolyline *jfkToLhr = [MKGeodesicPolyline polylineWithCoordinates:jfkToLhrCoords count:2];

[mapView addOverlay:laxToJfk];
[mapView addOverlay:jfkToLhr];

我想用需要在rendererForOverlay委托方法中配置的不同样式来渲染这两个叠加层。

- (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id <MKOverlay>)overlay {
    if (![overlay isKindOfClass:[MKPolyline class]]) {
        return nil;
    }

    MKPolylineRenderer *renderer = [[MKPolylineRenderer alloc] initWithPolyline:(MKPolyline *)overlay];
    renderer.lineWidth = 3.0f;

    // How to set different colors for LAX-JFK and JFK-LHR?
    renderer.strokeColor = [UIColor blueColor];

    return renderer;
}

我的问题是有哪些选项可以识别上述方法中的两种不同叠加层?

到目前为止,这是我所考虑的:

  1. 子类化:不是一个选项,因为MKGeodesicPolyline是通过静态工厂方法初始化的。
  2. 在属性中保留对覆盖的引用,然后将委托的overlay参数与这些参数进行比较。这确实有效,但感觉有点笨拙。此外,对于两个以上的叠加层,需要使用 anNSSet或 an扩展此方法NSArray

我还能做些什么来简化这一点吗?它似乎MKGeodesicPolyline不具备任何可用于标记的属性。

4

1 回答 1

5

子类化的一种替代方法是使用关联对象。但通常不鼓励使用它。

一个更长但更稳定的解决方案是制作一个 customMKOverlay和 a MKOverlayRenderer,将它们的大部分实现分别转发到 MKGeodesicPolyline和的私有实例MKPolylineRenderer。然后您可以添加自定义属性来设置颜色。

于 2015-09-02T10:03:52.587 回答