更新高德地图

This commit is contained in:
DDIsFriend
2023-12-26 18:04:18 +08:00
parent 6f8051bf4e
commit 06e156e7a3
53 changed files with 490 additions and 440 deletions

View File

@@ -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
/**