0

我想在我的地图上的折线路线顶部设置一个矩形。

这正是我想要做的:

- (MKOverlayRenderer *)mapView:(MKMapView *)mapView rendererForOverlay:(id<MKOverlay>)overlay
{
    if ([overlay isKindOfClass:[MKPolyline class]]) {
        MKPolyline *route = overlay;
        MKPolylineRenderer *routeRenderer = [[MKPolylineRenderer alloc] initWithPolyline:route];
        routeRenderer.strokeColor = [[UIColor blueColor] colorWithAlphaComponent:0.7];
        routeRenderer.lineWidth = 5.0;
        [self.mapView.visibleMapRect = route.boundingMapRect];
        return routeRenderer;
    }
    else return nil;
}

我对这行代码有疑问:

[self.mapView.visibleMapRect = route.boundingMapRect];

我收到“预期标识符”错误。这行代码有什么问题?这是为 MKPolyline 路线设置 Mkrect 的正确方法吗?

谢谢!

4

2 回答 2

0

我已经用这行代码解决了:

MKMapRect test = MKMapRectInset(route.boundingMapRect, -route.boundingMapRect.size.height/2, -route.boundingMapRect.size.width/2);
    [self.mapView setVisibleMapRect:test animated:YES];
于 2013-09-17T07:30:34.953 回答
0

这不是你写objective-C的方式,试试这个

self.mapView.visibleMapRect = route.boundingMapRect;

或者

[self.mapView setVisibleMapRect:route.boundingMapRect animated:YES];
于 2013-09-17T00:45:32.837 回答