新增景区权限模块,集成 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,81 @@
//
// MAAnnotationMoveAnimation.h
// MAMapKit
//
// Created by shaobin on 16/11/21.
// Copyright © 2016 Amap. All rights reserved.
//
#import "MAConfig.h"
#import <Foundation/Foundation.h>
#import "MAAnnotation.h"
///annotation移动动画. since 4.5.0
///annotation animation since 4.5.0
@interface MAAnnotationMoveAnimation : NSObject
/**
* @brief 获取动画名字
* get animation name
* @return 添加动画时传入的名字
* name passed when adding animation
*/
- (NSString *)name;
/**
* @brief 获取经纬度坐标点数组
* get latitude and longitude coordinate point array
* @return 返回经纬度坐标点数组
* return latitude and longitude coordinate point array
*/
- (CLLocationCoordinate2D *)coordinates;
/**
* @brief 获取coordinates数组内坐标点个数
* get number of coordinate points in the coordinates array
* @return coordinates数组内坐标点个数
* Number of coordinate points in the coordinates array
*/
- (NSUInteger)count;
/**
* @brief 获取动画时长
* Get animation duration
* @return 动画时长
* Animation duration
*/
- (CGFloat)duration;
/**
* @brief 获取动画已执行的时长
* Get elapsed animation duration
* @return 动画已执行的时长
* Elapsed animation duration
*/
- (CGFloat)elapsedTime;
/**
* @brief 取消
* Cancel
*/
- (void)cancel;
/**
* @brief 是否已取消
* Is canceled
* @return YES已取消NO未取消
* YES canceled, NO not canceled
*/
- (BOOL)isCancelled;
/**
* @brief 获取当前动画已走过点的总个数
* Get the total number of points the current animation has passed
* @return 个数
* count
*/
- (NSInteger)passedPointCount;
@end