我正在将两个不同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;
}
我的问题是有哪些选项可以识别上述方法中的两种不同叠加层?
到目前为止,这是我所考虑的:
- 子类化:不是一个选项,因为
MKGeodesicPolyline
是通过静态工厂方法初始化的。 - 在属性中保留对覆盖的引用,然后将委托的
overlay
参数与这些参数进行比较。这确实有效,但感觉有点笨拙。此外,对于两个以上的叠加层,需要使用 anNSSet
或 an扩展此方法NSArray
。
我还能做些什么来简化这一点吗?它似乎MKGeodesicPolyline
不具备任何可用于标记的属性。