放大和缩小时的Mapkit Annotation类型?

时间:2011-02-28 11:09:09

标签: ios4 mapkit mkpinannotationview

我正在使用Mapkit,我在SDK 4.2上,我在这里有一个奇怪的错误,实际上我有3个注释类型,“blue.png”,red.png,black.png。我通过助焊剂加载它们,并根据类型选择这些注释类型。加载地图时一切正常我有不同的注释视图,但是当我移动时,放大或缩小注释视图的变化,即应该是blue.png的地方变为black.png。

我实际上是在设备上测试它。

非常感谢:)

2 个答案:

答案 0 :(得分:1)

嘿,问题是,如果用户平移地图以查看其他位置,然后返回到绘制注释的位置,则会调用此方法。

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

我见过许多地图应用程序的示例代码,这是大多数人正在使用的。

- (MKAnnotationView *)mapView:(MKMapView *)mapview viewForAnnotation:(id <MKAnnotation>)annotation
{
    if ([annotation isKindOfClass:[MKUserLocation class]])
        return nil;
    static NSString* AnnotationIdentifier = @"AnnotationIdentifier";
    MKAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:AnnotationIdentifier];
    if(annotationView)
        return annotationView;
    else
    {
        MKPinAnnotationView* pinView = [[[MKPinAnnotationView alloc]
                                         initWithAnnotation:annotation reuseIdentifier:AnnotationIdentifier] autorelease];
        pinView.animatesDrop=YES;
        pinView.canShowCallout=YES;
        pinView.draggable = YES;
        pinView.pinColor = MKPinAnnotationColorGreen;
        return pinView;
    }
    return nil;
}

答案 1 :(得分:0)

我找到了解决方案 - 事实上我正在使用自定义注释视图并具有3种不同类型的图像:

溶液:

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

    AnnotationView *annotationView = nil;

    // determine the type of annotation, and produce the correct type of annotation view for it.
    AnnotationDetails* myAnnotation = (AnnotationDetails *)annotation;

    if(myAnnotation.annotationType == AnnotationTypeGeo)
    {
// annotation for your current position
        NSString* identifier = @"geo";
        AnnotationView *newAnnotationView = (AnnotationView *)[self.mapView dequeueReusableAnnotationViewWithIdentifier:identifier];

        if(nil == newAnnotationView)
        {
            newAnnotationView = [[[AnnotationView alloc] initWithAnnotation:myAnnotation reuseIdentifier:identifier] autorelease];
        }

        annotationView = newAnnotationView;
    }
    else if(myAnnotation.annotationType == AnnotationTypeMyfriends)
    {
        NSString* identifier = @"friends";
AnnotationView *newAnnotationView = (AnnotationView *)[self.mapView dequeueReusableAnnotationViewWithIdentifier:identifier];

        if(nil == newAnnotationView)
        {
            newAnnotationView = [[[AnnotationView alloc] initWithAnnotation:myAnnotation reuseIdentifier:identifier] autorelease];
        }

        annotationView = newAnnotationView;
}
}