10#if MA_INCLUDE_OVERLAY_HEATMAP
18@interface MAHeatMapVectorGridNode : NSObject
21@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
26@interface MAHeatMapVectorGrid : NSObject
29@property (nonatomic, copy) NSArray<MAHeatMapVectorGridNode *> *inputNodes;
33@property (nonatomic, strong) UIColor *color;
38@interface MAHeatMapVectorGridOverlayOptions : NSObject
42@property (nonatomic, assign) MAHeatMapType type;
46@property (nonatomic, assign) BOOL visible;
50@property (nonatomic, copy) NSArray<MAHeatMapVectorGrid *> *inputGrids;
54@property (nonatomic, assign) CGFloat minZoom;
58@property (nonatomic, assign) CGFloat maxZoom;
69@property (nonatomic, strong) MAHeatMapVectorGridOverlayOptions *option;
79+ (instancetype)heatMapOverlayWithOption:(MAHeatMapVectorGridOverlayOptions *)option;
Definition MAOverlay.h:15