如何使用现有注释添加新注释?

How to add new Annotation with existed annotations?

在我的申请中,我发布了来自特定位置的录制视频。我可以从另一个服务响应中获取已发布位置详细信息的列表。所以最初我得到了发布的位置详细信息并将其显示在 MapView 上。在 MapView 中,图钉显示为 Cluster 效果,所以我使用了 kingpin.

下面我加载了地图上的注释。

- (void)loadLocations:(NSArray *)arrayValues 
{
    _annotationArray = arrayValues;

    [self.clusteringController setAnnotations:[self reSetannotations]];

    [self.mapView setZoomEnabled:YES];

    [self.mapView setCenterCoordinate:self.mapView.userLocation.coordinate];

    [self.mapView setUserTrackingMode:MKUserTrackingModeFollow];


    KPGridClusteringAlgorithm *algorithm = [KPGridClusteringAlgorithm new];

    algorithm.annotationSize = CGSizeMake(25, 50);

    algorithm.clusteringStrategy = KPGridClusteringAlgorithmStrategyTwoPhase;

    self.clusteringController = [[KPClusteringController alloc] initWithMapView:self.mapView
                                                            clusteringAlgorithm:algorithm];
    self.clusteringController.delegate = self;

    self.clusteringController.animationOptions = UIViewAnimationOptionCurveEaseOut;

    [self.clusteringController setAnnotations:[self annotations]];

    NSString * lastobjlat;

    double miles;

    CLLocation * location = [COMMON currentLocation];

    lastobjlat = [NSString stringWithFormat:@"%f",location.coordinate.latitude];

    miles = 1.;

    double scalingFactor = ABS( (cos(2 * M_PI * [lastobjlat floatValue] / 360.0) ));

    MKCoordinateSpan span;

    span.latitudeDelta = miles/69.0;

    span.longitudeDelta = miles/(scalingFactor * 69.0);

    MKCoordinateRegion region;

    region.span = span;

    region.center = location.coordinate;

    [self.mapView setRegion:region animated:YES];

    self.mapView.showsUserLocation = YES;


    //Call in the below selectAnnotationAction method when I came to this, after I published new one on existed or new locations
    if (COMMON.isRecentPublication == YES) {

        COMMON.isRecentPublication = NO;

        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

            [self selectAnnotationAction];
        });
    }
}

//重置注释

- (NSArray *)reSetannotations 
{
    NSMutableArray *annotations = [NSMutableArray array];

    return annotations;
}

//这里我在自定义标记 class MapAnnotation 上管理位置详细信息。

- (NSArray *)annotations {

    CLLocationCoordinate2D locationPort;

    NSMutableArray *annotations = [NSMutableArray array];

    NSString *latitude, *longitude;

    if ([_annotationArray count] > 0) {

        for (int i = 0; i <[_annotationArray count]; i++){

            latitude = [NSString stringWithFormat:@"%@",[[_annotationArray objectAtIndex:i] valueForKey:@"latitude"]];

            latitude = [latitude stringByReplacingOccurrencesOfString:@"\n" withString:@""];

            latitude = [latitude stringByReplacingOccurrencesOfString:@"\t" withString:@""];

            longitude = [NSString stringWithFormat:@"%@",[[_annotationArray objectAtIndex:i] valueForKey:@"longitude"]];

            longitude = [longitude stringByReplacingOccurrencesOfString:@"\n" withString:@""];

            longitude = [longitude stringByReplacingOccurrencesOfString:@"\t" withString:@""];

            latitude = [NSString replaceEmptyStringInsteadOfNull:latitude];

            longitude = [NSString replaceEmptyStringInsteadOfNull:longitude];

            int publicationRatio   = [[[_annotationArray objectAtIndex:i] valueForKey:@"publicationRatio"] intValue];

            int publicationCount   = [[[_annotationArray objectAtIndex:i] valueForKey:@"publicationsCount"] intValue];

            int teazLocationId     = [[[_annotationArray objectAtIndex:i] valueForKey:@"objectId"] intValue];

            BOOL isUpgrade         = [[[_annotationArray objectAtIndex:i] valueForKey:@"isUpgraded"] boolValue];

            locationPort = CLLocationCoordinate2DMake([latitude doubleValue] ,
                                                      [longitude doubleValue]);

            //TODO : This is my custom annotation method

            MapAnnotation *a1 = [[MapAnnotation alloc] initWithCoordinate:locationPort
                                                                            tag:i
                                                               publicationRatio:publicationRatio
                                                               publicationCount:publicationCount
                                                                 teazLocationId:teazLocationId isUpgraded:isUpgrade];

            a1.itemindex = i + 1;

            a1.publicationRatio = publicationRatio;

            a1.publicationCount = publicationCount;

            a1.teazLocationId = teazLocationId;

            a1.isUpgraded = isUpgrade;

            a1.coordinate = CLLocationCoordinate2DMake([latitude doubleValue] ,
                                                       [longitude doubleValue] );
            [annotations addObject:a1];

            if (COMMON.isRecentPublication == YES) {

                if ([COMMON.recentPublicationLocationID  isEqual: @(publishedLocationId)]) {

                    _recentAnnotationView = [[MKPinAnnotationView alloc] initWithAnnotation:a1 reuseIdentifier:@"cluster"];

                }
            }
        }
    }

    return annotations;
}

初始加载带集群效果的Annotations没有问题。但是当我从相同或不同(新的)位置发布一些内容时,我需要重定向地图屏幕(发布部分是另一个屏幕)并且我需要使用 Active pin image[=70= 显示该发布详细信息].

按照我在地图上显示已发布位置详细信息所做的步骤

  1. 我创建了 recentPublicationLocationID 作为全局变量,并在发布服务后存储来自响应的 recentPublishedLocationID。

  2. 然后这个 return 类型方法 - (NSArray *)annotations(重定向到 mapView 之后我从另一个网络服务获得了位置详细信息它会调用),

我比较了recentPublishedId是否存在。然后如果存在,我已将我的自定义注释(包含最近发布的位置详细信息)分配给全局 MKPinAnnotationView 实例 - _recentAnnotationView

  1. 然后我直接从这个方法 - (void)loadLocations:(NSArray *)arrayValues 调用了 didSelectPinAnnotation 委托方法,如下所示,

//传递最近发布的位置详细信息

if (COMMON.isRecentPublication == YES)
{
    COMMON.isRecentPublication = NO;

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

        [self selectAnnotationAction];
    });
}

//选择AnnotationAction

- (void)selectAnnotationAction {

    COMMON.isRecentPublication = NO;

    COMMON.recentPublicationLocationID = nil;

    [self mapView:self.mapView didSelectAnnotationView:_recentAnnotationView];
}

如果我直接将 recentPublishedLocation 详细信息传递给 didSelectAnnotationView 委托,我只能显示 In Active pin 而不是 活动引脚 .

然后我用断点调试为什么我只能看到In active pin

因为在这种情况下,调用了 didselect 委托,我可以看到 活动引脚图像。但这只是在秒之内。

因为 viewForAnnotation delegate 被其他 pin annotations 快速调用所以选中的一个进入未选中状态

这才是真正的问题。我怎样才能克服集群的这项工作?

因为当我在地图上正确显示发布的位置详细信息时,即使它应该具有聚类效果。是的,我将放大以查看具有集群效果的图钉。

最后我得到了解决方案并使用 ClusterKit library instead of Kingpin 实现了我的要求。

这个工具确实帮助我实现了追加注释并根据我的要求自定义每一个东西。

所以对我更有帮助。当然是你们。

此工具支持 Objective c 和 Swift 的 Apple & Goole 地图。

我希望这对其他开发者也有帮助。

谢谢:)