我的代码可以跟踪公交路线的GPS位置路径。这很好,但我试图创建一个自定义线,使它看起来比一个平淡的直线更好。
我用stoke创建了一条线但是无论何时我改变了stoke,整条线都会改变,填充颜色也不会改变任何东西。
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;