我怎样才能在mkmapview上画线

时间:2013-10-12 21:27:00

标签: iphone ios annotations mkmapview mapkit

我在我的项目中使用OCMapView。 OCMapView是Map Kit cluster pinpoints.

我想在mapkit上添加一行。像这样

enter image description here

但是我的代码这样做:它不是合理的添加到地图上的叠加线。

enter image description here

我处理这段代码。

CLLocationCoordinate2D *coordinates
    = malloc(sizeof(CLLocationCoordinate2D) * [self.mapView.annotations count]);
    for (int i=0; i<[self.mapView.annotations count]; i++) {
        OCMapViewSampleHelpAnnotation * ann=[annodationArray objectAtIndex:i];
        coordinates[i]=ann.coordinate;


    }
    self.routeLineView=nil;
self.routeLine = [MKPolyline polylineWithCoordinates:coordinates count:self.mapView.annotations.count]; // 
    free(coordinates);
    [self.mapView setVisibleMapRect:[self.routeLine boundingMapRect]]; //If you want the route to be visible
    dispatch_async(dispatch_get_main_queue(), ^{
        [self.mapView addOverlay:self.routeLine];
    });

你可以看到我的叠加层拉链方法

- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay{
    //normally here is circle. 

    if(overlay == self.routeLine)
    {
        if(nil == self.routeLineView)
        {
            self.routeLineView = [[MKPolylineView alloc] initWithPolyline:self.routeLine];
            self.routeLineView.fillColor = [UIColor redColor];
            self.routeLineView.strokeColor = [UIColor redColor];
            self.routeLineView.lineWidth = 3;

        }

        return self.routeLineView;
    }

    return nil;


} 

我也在分享我的项目代码。我该如何解决这个问题?

https://www.dropbox.com/s/q0gtwihtl8o2pom/OCMapView-master.zip

1 个答案:

答案 0 :(得分:0)

只需使用self.mapView.displayedAnnotations(这些只是可见的)而不是self.mapView.annotations(这些都是注释,已添加)。