0

我有一个 MKMapView 类,我想在地图上显示由图像表示的用户位置。所以,我读了这个教程:http ://www.switchonthecode.com/tutorials/getting-your-location-in-an-iphone-application

这家伙在视图上使用 locationmanager,我需要在 MKMapView 上使用它。

对我来说,最好的方法是创建一个仅用于控制用户位置的类?我怎样才能做到这一点?

谢谢!!

4

2 回答 2

0

为此,您需要实施MKAnnotation&MKMapView代表。

实现此方法以将默认引脚更改为自定义图像。

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
  {
    if ([annotation isKindOfClass:[MKUserLocation class]])
    {
        // Create a custom MKAnnotationView here that will display your image.
        //user current location
    }

    static NSString *identifier = @"MyLocation";   
    if ([annotation isKindOfClass:[MyLocation class]])
    {

        MKPinAnnotationView *annotationView = (MKPinAnnotationView *) [_mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
        if (annotationView == nil)
        {
            annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
        }
        else
        {
            annotationView.annotation = annotation;
        }

        annotationView.enabled = YES;
        annotationView.canShowCallout = YES;
        annotationView.image=[UIImage imageNamed:@"yourImage.png"];

        return annotationView;
    }

    return nil;    
}

请参考本教程

于 2012-11-14T04:26:52.600 回答
0

首先,您希望该位置显示在您的地图上:

yourMapView.showsUserLocation = YES;

然后您需要处理用于显示用户位置的注释视图的委托方法:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id < MKAnnotation >)annotation {
    if ([annotation isKindOfClass:[MKUserLocation class]]) {
        // Create a custom MKAnnotationView here that will display your image.
    }
}

确保正确设置delegateMKMapView

于 2012-11-14T02:13:11.467 回答