如何在地图上显示图像而不是作为Pin而是作为单独的图像?

时间:2013-07-29 11:26:26

标签: iphone ios ipad uiimage mapkit

我想在地图上显示两个标志,但这些不是别针。我搜索了很多,但找不到解决方案,只能添加为pin。

请帮助

4 个答案:

答案 0 :(得分:1)

您可以MKAnnotationView使用image属性,例如viewForAnnotation:方法中的{...}

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

    static NSString *identifier = @"Current";           
    MKAnnotationView *annotationView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];

    if (annotationView == nil)
    {
        annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier] autorelease];
    }

    if (annotation == mapView.userLocation)
        return nil;

    annotationView.image = [UIImage imageNamed:@"yourImageName.png"];
    annotationView.annotation = annotation;            
    annotationView.canShowCallout = YES;
    return annotationView;
}

答案 1 :(得分:1)

您正在寻找地图覆盖MKOverlayView

查看这些教程:

创建叠加层

  • 创建MKOverlayView

创建MKOverlayView的子类,如:

<强>·H     #进口     #import

@interface MapOverlayView : MKOverlayView
{
}
@end

<强>的.m

#import "MapOverlayView.h"

@implementation MapOverlayView

- (void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale inContext:(CGContextRef)ctx
{

    UIImage *image = [UIImage imageNamed:@"yourImage.png"];
    CGImageRef imageReference = image.CGImage;

    MKMapRect theMapRect = [self.overlay boundingMapRect];
    CGRect theRect = [self rectForMapRect:theMapRect];

    CGContextDrawImage(ctx, theRect, imageReference); 
}

@end
  • 添加叠加

实施viewForOverlay:,在里面创建叠加层并添加到地图。

- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay
{

    MapOverlay *mapOverlay = (MapOverlay *)overlay;    
    MapOverlayView *mapOverlayView = [[[MapOverlayView alloc] initWithOverlay:mapOverlay] autorelease];

    return mapOverlayView;
}

答案 2 :(得分:0)

尝试这个

annotation = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"try"];
    annotation.canShowCallout = YES;

    annotation.image = [UIImage imageNamed:@"image.png"];


    return annotation;

并且不要使用annotation.animatesDrop属性。

答案 3 :(得分:0)

如果你在谈论MKMapView
要显示图像而不是Pin注释,您需要覆盖MKMapView方法

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

像这样:

- (MKAnnotationView *)viewForAnnotation:(id < MKAnnotation >)annotation{
    static NSString* annotationIdentifier = @"Identifier";
    MKAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier];
    if(annotationView)
        return annotationView;
    else
    {
        MKAnnotationView *annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationIdentifier];
        annotationView.canShowCallout = YES;
// here you need to give the image you want instead of pin
            annotationView.image = [UIImage imageNamed:[NSString stringWithFormat:@"balloon.png"]];        
            return annotationView;
        }
        return nil;
        }