0

我正在使用代码将图像添加到 MKPointAnnotation。

    - (MKAnnotationView *)mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    static NSString *SFAnnotationIdentifier = @"SFAnnotationIdentifier";
    MKPinAnnotationView *pinView =
    (MKPinAnnotationView *)[_routeMap dequeueReusableAnnotationViewWithIdentifier:SFAnnotationIdentifier];
    if (!pinView)
    {
        MKAnnotationView *annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation
                                                                         reuseIdentifier:SFAnnotationIdentifier];
        UIImage *flagImage = [UIImage imageNamed:@"BikeIconMap"];
        // You may need to resize the image here.
        annotationView.image = flagImage;
        return annotationView;
    }
    else
    {
        pinView.annotation = annotation;
    }
    return pinView;
}

但它也显示了用户位置的自定义图像。用户位置的圆形波浪动画也消失了。

在此处输入图像描述 在此处输入图像描述

有没有办法在不更改用户位置图像和动画的情况下将图像添加到 MKPointAnnotation?

4

1 回答 1

1

在 MKMapViewDelegate 的 viewForAnnotation: 方法中添加此代码

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
    if (annotation == mapView.userLocation) return nil;
于 2017-09-26T07:27:11.423 回答