10#if MA_INCLUDE_OVERLAY_CUSTOMBUILDING
16#pragma mark - MACustomBuildingOverlayOption
22@property (nonatomic, assign) CGFloat height;
25@property (nonatomic, assign) CGFloat heightScale;
28@property (nonatomic, strong) UIColor *topColor;
31@property (nonatomic, strong) UIColor *sideColor;
34@property (nonatomic, assign) BOOL visibile;
42+ (instancetype)optionWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
50- (BOOL)setOptionWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
55#pragma mark - MACustomBuildingOverlay
61@property (nonatomic, readonly) MACustomBuildingOverlayOption *defaultOption;
64@property (nonatomic, readonly) NSArray<MACustomBuildingOverlayOption *> *customOptions;
70- (void)addCustomOption:(MACustomBuildingOverlayOption *)option;
76- (void)removeCustomOption:(MACustomBuildingOverlayOption *)option;
该类是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类MAPolyline,MAPolygon来实例化
Definition MAMultiPoint.h:16
该类为一个抽象类,定义了基于MAAnnotation的MAShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
Definition MAShape.h:15
该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
Definition MAOverlay.h:14