1

我在我的项目中使用OCMapView。OCMapView 是Map Kit 集群定位点。

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

在此处输入图像描述

但是我的代码这样做:添加到地图上的覆盖线是不合逻辑的。

在此处输入图像描述

我处理这段代码。

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

4

1 回答 1

0

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

于 2013-10-18T13:51:01.203 回答