新增景区权限模块,集成 AMap CocoaPods 并支持模拟器

将景区选择与权限申请流程接入首页路由,集成高德 SDK 用于真机构建,并通过 Podfile post_install 钩子保证 arm64 模拟器可编译。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-23 10:15:26 +08:00
parent 5d4613f317
commit b61bf0d070
416 changed files with 18641 additions and 38 deletions

View File

@ -0,0 +1,34 @@
//
// MAMapCustomStyleOptions.h
// MAMapKit
//
// Created by ldj on 2018/11/27.
// Copyright © 2018 Amap. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface MAMapCustomStyleOptions : NSObject
///自定义样式二进制
///Custom style binary
@property (nonatomic, strong) NSData *styleData;
///海外自定义样式文件路径
///Overseas custom style file path
@property (nonatomic, strong) NSString *styleDataOverseaPath;
///设置地图自定义样式对应的styleID从官网获取
///Set the styleID corresponding to the map custom style, obtained from the official website
@property (nonatomic, strong) NSString *styleId;
///设置自定义纹理文件二进制
///Set custom texture file binary
@property (nonatomic, strong) NSData *styleTextureData;
///样式额外的配置,比如路况,背景颜色等 since 6.7.0
///Additional style configurations, such as traffic conditions, background color, etc. since 6.7.0
@property (nonatomic, strong) NSData *styleExtraData;
@end