监控的车辆状态label约束修改,更新高德地图

This commit is contained in:
DDIsFriend
2024-04-02 15:51:09 +08:00
parent 990658582a
commit 4018a59c7a
2862 changed files with 15621 additions and 3359 deletions

View File

@@ -19,6 +19,7 @@
#import "MAUserLocationRepresentation.h"
#import "MAMapCustomStyleOptions.h"
#import <AMapFoundationKit/AMapServices.h>
#import "MABaseEngineOverlay.h"
///地图类型
typedef NS_ENUM(NSInteger, MAMapType)
@@ -46,6 +47,7 @@ typedef NS_ENUM(NSInteger, MATrafficStatus)
MATrafficStatusSlow, ///< 2 缓行
MATrafficStatusJam, ///< 3 阻塞
MATrafficStatusSeriousJam, ///< 4 严重阻塞
MATrafficStatusExtremelySmooth, ///< 5 极度通畅
};
///绘制overlay的层级
@@ -794,6 +796,15 @@ extern NSString * const kMAMapLayerCameraDegreeKey;
- (void)showHiddenBuildingsWithOperationId:(NSInteger)operationId;
@end
@interface MAMapView (EngineOverlay)
/**
* @brief 向地图窗口添加Overlay。
* @param overlay 要添加的engine overlay
*/
- (void)addEngineOverlay:(MABaseEngineOverlay *)overlay;
@end
#pragma mark - MAMapViewDelegate
@protocol MAMapViewDelegate <NSObject>