将景区选择与权限申请流程接入首页路由,集成高德 SDK 用于真机构建,并通过 Podfile post_install 钩子保证 arm64 模拟器可编译。 Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
327 B
Objective-C
19 lines
327 B
Objective-C
//
|
|
// MABaseEngineOverlay.h
|
|
// MAMapKit
|
|
//
|
|
// Created by linshiqing on 2024/1/23.
|
|
// Copyright © 2024 Amap. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MABaseEngineOverlay : NSObject
|
|
/// 移除Overlay Remove Overlay
|
|
- (void)removeOverlay;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|