5

我正在做一个小项目,在地图上显示 7 种不同类型的注释。我的注释取自数组中的 url 结果,我使用 JSON 对其进行解析。我有很多注释,一旦地图加载,一切看起来都很好。放大和缩小后,pin 图像由于某种原因变为错误的 pin 图像(特定图像,不知道为什么)。

我确定我在这里遗漏了一些东西...请您帮忙:)?

这是我的代码的一部分,如果您需要它,请告诉我:

-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation{

static NSString *identifier;

if(_mapView.tag==1){identifier = @"TurbulencePin";}
if(_mapView.tag==2){identifier = @"IcingPin";}
if(_mapView.tag==3){identifier = @"WindsPin";}
if(_mapView.tag==4){identifier = @"TemperaturePin";}
if(_mapView.tag==5){identifier = @"CloudsPin";}
if(_mapView.tag==6){identifier = @"VisibilityPin";}
if(_mapView.tag==7){identifier = @"MultiplePin";}


if ([annotation isKindOfClass:[MKUserLocation class]])
    return nil;

if ([annotation isKindOfClass:[Annotation class]]) {

    CustomAnnotationView* annotationView = (CustomAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
    annotationView = nil;

    if (annotationView == nil) {

        annotationView = [[CustomAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
        annotationView.enabled = YES;
        annotationView.canShowCallout = YES;


        UIImage *img = [UIImage imageNamed:[NSString stringWithFormat:@"%@.png",identifier]];
        annotationView.image = img;

    }
else
    {

        annotationView.annotation = annotation;

    }


    return annotationView;

}
return nil;

}

更新:

根据其他人的反馈,我修改了图像设置的代码如下:

 Annotation *myCustomAnn = (Annotation *)annotation;
 NSString *imgName = myCustomAnn.imageName;
 UIImage *img = [UIImage imageNamed:[NSString stringWithFormat:@"%@Pin.png",imgName]];
 annotationView.image = img;

 return annotationView;

另外,我删除了annotationView = nil;

但是,我无法将 annotation.m 中的图像名称设置为硬编码值,因为我需要为每个注释显示不同的 pin 图像。我确定有一个解释,但我可以从 mapView:viewForAnnotation: 下的 annotation.m 获得的唯一值是注释坐标(myCustomAnn.coordinate.latitude并且myCustomAnn.coordinate.longitude),我不知道如何从 annotation.m 获取其他属性

其他属性,例如 title、imgname 等返回为 null

4

3 回答 3

5

主要问题是代码viewForAnnotation依赖于外部变量_mapView.tag来确定注释视图。

viewForAnnotation假设映射调用委托方法的时间 和频率是不安全的。

如果注释的视图依赖于某些值,通常最好将这些值直接嵌入到注释对象本身中。这样,在viewForAnnotation委托方法中,您可以通过annotation传递给方法的参数引用那些特定于注解的值。在创建注释时(在调用之前)应该设置这些注释特定的值addAnnotation

有关更多详细信息和示例,请参阅:

一个单独的问题是代码在调用后设置annotationView为失败出队。nildequeueReusableAnnotationViewWithIdentifier


至少在 中viewForAnnotation,它处理Annotation类的更正代码可能如下所示(不是整个方法 - 只是第二个内部的部分if):

static NSString *identifier = @"ann";

CustomAnnotationView* annotationView = (CustomAnnotationView*)[mapView 
    dequeueReusableAnnotationViewWithIdentifier:identifier];

//annotationView = nil;  // <-- remove this line

if (annotationView == nil) 
{
    annotationView = [[CustomAnnotationView alloc] 
                         initWithAnnotation:annotation 
                         reuseIdentifier:identifier];
    annotationView.enabled = YES;
    annotationView.canShowCallout = YES;
}
else
{
    annotationView.annotation = annotation;
}

//MOVE the setting of the image to AFTER the dequeue/create 
//because the image property of the annotation view 
//is based on the annotation and we can update image in one place
//after both the dequeue and create are done...

//Get the image name from the annotation ITSELF 
//from a custom property (that you add/set)
Annotation *myCustomAnn = (Annotation *)annotation;

NSString *imgName = myCustomAnn.imageName;  
//imageName is the custom property you added/set

UIImage *img = [UIImage imageNamed:
                   [NSString stringWithFormat:@"%@.png",imgName]];

annotationView.image = img;

return annotationView;
于 2013-05-11T13:14:41.720 回答
0

由罗解决

问题是,我无法检索我在 VC 中设置的注释属性。原因是我[_mapView addAnnotation:ann];在设置所有注释的属性之前使用了该命令。也就是说,通过将此行移动到注释初始属性设置的末尾部分,解决了问题。

谢谢大家,非常感谢Rob!我已经准备好迎接下一个挑战了。

于 2013-05-11T15:53:06.763 回答
0

一个问题是,它viewForAnnotation正在根据类实例变量确定要显示的正确图像。通常,注释图像的标识符将是自定义注释本身的属性,而不是某些外部实例变量。

最重要的是,在设置所有注释的属性之前,似乎已将注释添加到地图中。应该推迟addAnnotation到所有注释的属性都设置完毕。

或者,您可以将注释添加到 a NSMutableArray,根据需要调整它们,并且只在最后使用addAnnotations(注意 s)添加注释,并将其传递给数组。

于 2013-05-11T16:04:42.103 回答