Add ScenicPermission module and AMap CocoaPods with simulator support.
Integrate scenic selection and permission flows into home routing, add AMap SDK for device builds while keeping arm64 simulators compilable via Podfile post_install hooks. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
29
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAMVTTileOverlay.h
generated
Normal file
29
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAMVTTileOverlay.h
generated
Normal file
@ -0,0 +1,29 @@
|
||||
//
|
||||
// MAMVTTileOverlay.h
|
||||
// MapKit_static
|
||||
//
|
||||
// Created by Li Fei on 11/22/13.
|
||||
// Copyright © 2016 Amap. All rights reserved.
|
||||
//
|
||||
|
||||
#import "MAConfig.h"
|
||||
#if MA_INCLUDE_OVERLAY_TILE
|
||||
#if FEATURE_MVT
|
||||
#import "MATileOverlay.h"
|
||||
#import "MABaseOverlay.h"
|
||||
|
||||
@interface MAMVTTileOverlayOptions : NSObject
|
||||
@property (nonatomic, copy) NSString *url; // URL
|
||||
@property (nonatomic, copy) NSString *key; // key
|
||||
@property (nonatomic, copy) NSString *Id; // id
|
||||
@property (nonatomic, assign) BOOL visible; // 是否可见 默认YES Visible, default YES
|
||||
@end
|
||||
|
||||
/// MVT瓦片数据 MVT tile data
|
||||
@interface MAMVTTileOverlay : MATileOverlay
|
||||
/// MVT配置选项 MVT configuration options
|
||||
@property (nonatomic, strong, readonly) MAMVTTileOverlayOptions *option;
|
||||
+ (instancetype)mvtTileOverlayWithOption:(MAMVTTileOverlayOptions *)option;
|
||||
@end
|
||||
#endif
|
||||
#endif
|
||||
Reference in New Issue
Block a user