自定义大头针动画/颜色/删除

self.mapView.delegate = self;


设置图片 98 - 99

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

大头针模型里 添加字段

///  大头针图片

@property (nonatomic, copy) NSString *iconImage;


99-100 根据不同模型 设置不同图片

LYAnnotation *anno = (LYAnnotation *)annotation;

annotationView.image = [UIImage imageNamed:anno.iconImage];


不显示

MKAnnotationView默认没有界面 可以显示图片

MKPinAnnotationView默认有界面,不显示图片


自定义动画:

MKAnnotationView:

Bug:


大头针的删除

[self.mapView removeAnnotations:annotation1];

[self.mapView removeAnnotations:self.mapView.annotations];

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容