我有我的代码来跟踪公交路线的 GPS 位置路径。这很好用,但我试图创建一条自定义线,使其看起来比平淡无奇的直线更好。
我用描边创建了一条线,但每当我改变描边时,整条线都会改变,填充颜色不会改变任何东西。
NSMutableArray *array = [dictionary objectForKey:@"routeLines"];
if ([array containsObject:overlay]) {
// create a MKPolylineView with the right colour and display it
MKPolylineView *lineView = [[MKPolylineView alloc] initWithPolyline: (MKPolyline *)overlay];
lineView.fillColor = [UIColor whiteColor];
lineView.strokeColor = [UIColor orangeColor];
lineView.lineWidth = 5;
overlayView = lineView;
break;