高德地图SDK(导航) V10.0.600
Loading...
Searching...
No Matches
MAHeatMapVectorGridOverlay.h
Go to the documentation of this file.
1//
2// MAHeatMapVectorGridOverlay.h
3// MAMapKit
4//
5// Created by ldj on 2019/7/25.
6// Copyright © 2019 Amap. All rights reserved.
7// 热力图网格覆盖物(通过顶点直接绘制)
8
9#import "MAConfig.h"
10#if MA_INCLUDE_OVERLAY_HEATMAP
11
12#import "MAShape.h"
13#import "MAOverlay.h"
15
17@interface MAHeatMapVectorGridNode : NSObject
19@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
20@end
21
23@interface MAHeatMapVectorGrid : NSObject
25@property (nonatomic, copy) NSArray<MAHeatMapVectorGridNode *> *inputNodes;
26
28@property (nonatomic, strong) UIColor *color;
29@end
30
32@interface MAHeatMapVectorGridOverlayOptions : NSObject
33
35@property (nonatomic, assign) MAHeatMapType type;
36
38@property (nonatomic, assign) BOOL visible;
39
41@property (nonatomic, copy) NSArray<MAHeatMapVectorGrid *> *inputGrids;
42
44@property (nonatomic, assign) CGFloat minZoom;
45
47@property (nonatomic, assign) CGFloat maxZoom;
48
49@end
50
52@interface MAHeatMapVectorGridOverlay : MAShape<MAOverlay>
53
54
56@property (nonatomic, strong) MAHeatMapVectorGridOverlayOptions *option;
57
63+ (instancetype)heatMapOverlayWithOption:(MAHeatMapVectorGridOverlayOptions *)option;
64
65@end
66
67#endif
该类为一个抽象类,定义了基于MAAnnotation的MAShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
Definition MAShape.h:15
该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
Definition MAOverlay.h:14
© 2017 高德信息技术有限公司 版权所有,保留所有权利。