10#if MA_INCLUDE_OVERLAY_MAMultiPoint
16@interface MAMultiPointItem : NSObject<NSCopying,
MAAnnotation>
19@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
22@property (nonatomic, copy) NSString *customID;
25@property (nonatomic, copy) NSString *title;
28@property (nonatomic, copy) NSString *subtitle;
37@property (nonatomic, readonly) NSArray<MAMultiPointItem *> *items;
40- (instancetype)initWithMultiPointItems:(NSArray<MAMultiPointItem *> *)items;
该类为一个抽象类,定义了基于MAAnnotation的MAShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
Definition MAShape.h:15
该类为标注点的protocol,提供了标注类的基本信息函数
Definition MAAnnotation.h:16
该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
Definition MAOverlay.h:14