我需要在Mapview
这是我需要实现的屏幕截图,但是我得到的是没有边框的折线。
代码工作:
- (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id <MKOverlay>)overlay {
MKPolylineRenderer *renderer = [[MKPolylineRenderer alloc] initWithPolyline:overlay];
renderer.strokeColor = [UIColor rle_lightBurGundy];
renderer.fillColor = [UIColor rle_whiteColor];
renderer.lineWidth = 4.0;
return renderer;
}
答案 0 :(得分:0)
检出此线程this tutorial。 Chandni-Systematix的答案是解决问题的好方法……您需要制作一个自定义渲染器,以绘制2条路径(边框和主折线)。他链接了一个github示例,您可以检查ASPolylineRenderer.h / .m Github链接: the Pattern Javadoc