更新高德地图
This commit is contained in:
@@ -10,6 +10,8 @@
|
||||
#import "AMapNaviCommonObj.h"
|
||||
#import "AMapNaviRideDataRepresentable.h"
|
||||
#import "AMapNaviEleBikeDataRepresentable.h"
|
||||
#import "AMapNaviCompositeAnnotation.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
///骑行导航界面显示模式
|
||||
@@ -148,6 +150,18 @@ typedef NS_ENUM(NSInteger, AMapNaviRideViewShowMode)
|
||||
* @param wayPointImage 途经点图标,设置nil为默认图标
|
||||
*/
|
||||
- (void)setWayPointImage:(nullable UIImage *)wayPointImage;
|
||||
#pragma mark - Overlay
|
||||
/**
|
||||
* @brief 在导航地图中添加自定义overlay. since 9.7.0
|
||||
* @param overlay 具体参考 官方Demo中 DriveViewWithCustomOverlayViewController .
|
||||
*/
|
||||
- (void)addCustomOverlay:(id <AMapNaviCompositeOverlay>_Nonnull)overlay;
|
||||
|
||||
/**
|
||||
* @brief 移除导航地图中的自定义overlay. since 9.7.0
|
||||
* @param overlay 具体参考 AMapNaviCompositeOverlay .
|
||||
*/
|
||||
- (void)removeCustomOverlay:(id <AMapNaviCompositeOverlay>_Nonnull)overlay;
|
||||
#pragma mark - Other
|
||||
|
||||
/**
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
#ifndef AMapNaviVersion_h
|
||||
#define AMapNaviVersion_h
|
||||
|
||||
#define AMapNaviVersionNumber 90600
|
||||
#define AMapNaviFoundationVersionMinRequired 10800
|
||||
#define AMapNaviVersionNumber 90801
|
||||
#define AMapNaviFoundationVersionMinRequired 10802
|
||||
#define AMapNavi3DMapVersionMinRequired 90000
|
||||
|
||||
/// 依赖库版本检测
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
///MAHeatMapNode array
|
||||
@property (nonatomic, strong) NSArray<MAHeatMapNode *> *data;
|
||||
|
||||
///热力图半径,默认为12,范围:0-100 screen point
|
||||
///热力图半径,默认为12,范围:10-200 screen point
|
||||
@property (nonatomic, assign) NSInteger radius;
|
||||
|
||||
///透明度,默认为0.6,范围:0-1
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#ifndef MAMapVersion_h
|
||||
#define MAMapVersion_h
|
||||
|
||||
#define MAMapVersionNumber 90600
|
||||
#define MAMapVersionNumber 90602
|
||||
#define MAMapMinRequiredFoundationVersion 10800
|
||||
|
||||
// 依赖库版本检测
|
||||
|
||||
@@ -27,7 +27,8 @@ typedef NS_ENUM(NSInteger, MAMapType)
|
||||
MAMapTypeSatellite, ///< 卫星地图
|
||||
MAMapTypeStandardNight, ///< 夜间视图
|
||||
MAMapTypeNavi, ///< 导航视图
|
||||
MAMapTypeBus ///< 公交视图
|
||||
MAMapTypeBus, ///< 公交视图
|
||||
MAMapTypeNaviNight ///< 导航夜间视图
|
||||
};
|
||||
|
||||
///用户跟踪模式
|
||||
|
||||
Reference in New Issue
Block a user