我正在向这样的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
参数与这些参数进行比较。这确实有效,但感觉有点笨拙。此外,对于两个以上的叠加层,需要使用NSSet
或NSArray
来扩展此方法。我还能做些什么来简化这个吗? MKGeodesicPolyline
似乎没有任何可用于标记的属性。
答案 0 :(得分:3)
子类化的一种替代方法是使用associated objects。但它的使用经常被劝阻。
更长但更稳定的解决方案是制作自定义MKOverlay
和MKOverlayRenderer
,将大多数实施转发给MKGeodesicPolyline
和MKPolylineRenderer
的私有实例分别。然后,您可以添加自定义属性来设置颜色。