You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
916 B
36 lines
916 B
// |
|
// MAHeatMapVectorOverlayRender.h |
|
// MAMapKit |
|
// |
|
// Created by ldj on 2019/7/26. |
|
// Copyright © 2019 Amap. All rights reserved. |
|
// |
|
#import "MAConfig.h" |
|
#if MA_INCLUDE_OVERLAY_HEATMAP |
|
|
|
#import "MAOverlayRenderer.h" |
|
#import "MAHeatMapVectorOverlay.h" |
|
|
|
///矢量热力图绘制类 |
|
@interface MAHeatMapVectorOverlayRender : MAOverlayRenderer |
|
|
|
///关联的MAHeatMapVectorOverlay |
|
@property (nonatomic, readonly) MAHeatMapVectorOverlay *heatOverlay; |
|
|
|
/** |
|
* @brief 根据指定的MAHeatMapVectorOverlay生成一个Renderer |
|
* @param heatOverlay 指定MAHeatMapVectorOverlay |
|
* @return 新生成的MAHeatMapVectorOverlayRender |
|
*/ |
|
- (instancetype)initWithHeatOverlay:(MAHeatMapVectorOverlay *)heatOverlay; |
|
|
|
|
|
/** |
|
* @brief 根据经纬度获取对应的热力节点信息MAHeatMapVectorItem |
|
* @param coordinate 经纬度 |
|
*/ |
|
- (MAHeatMapVectorItem *)getHeatMapItem:(CLLocationCoordinate2D )coordinate; |
|
|
|
@end |
|
|
|
#endif
|
|
|