新增景区权限模块,集成 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,49 @@
//
// MAOverlayPathRenderer.h
// MAMapKit
//
//
// Copyright (c) 2011年 Amap. All rights reserved.
//
#import "MAConfig.h"
#import <UIKit/UIKit.h>
#import "MAOverlayRenderer.h"
#import "MAPathShowRange.h"
///该类设置overlay绘制的属性可以使用该类的子类MACircleRenderer, MAPolylineRenderer, MAPolygonRenderer或者继承该类
///This class sets the properties for overlay drawing, and you can use its subclasses MACircleRenderer, MAPolylineRenderer, MAPolygonRenderer or inherit from this class
@interface MAOverlayPathRenderer : MAOverlayRenderer
///填充颜色,默认是kMAOverlayRendererDefaultFillColor
///Fill color, default is kMAOverlayRendererDefaultFillColor
@property (nonatomic, retain) UIColor *fillColor;
///笔触颜色,默认是kMAOverlayRendererDefaultStrokeColor
///stroke color, default is kMAOverlayRendererDefaultStrokeColor
@property (nonatomic, retain) UIColor *strokeColor;
///笔触宽度, 单位屏幕点坐标默认是0
///stroke width, in screen points, default is 0
@property (nonatomic, assign) CGFloat lineWidth;
///LineJoin,默认是kMALineJoinBevel
///LineJoin, default is kMALineJoinBevel
@property (nonatomic, assign) MALineJoinType lineJoinType;
///LineCap,默认是kMALineCapButt
///LineCap, default is kMALineCapButt
@property (nonatomic, assign) MALineCapType lineCapType;
///MiterLimit,默认是2.f
///MiterLimit, default is 2.f
@property (nonatomic, assign) CGFloat miterLimit;
///虚线类型, since 5.5.0
///line dash pattern, since 5.5.0
@property (nonatomic, assign) MALineDashType lineDashType;
///是否抽稀默认为YESsince 10.0.8000
///Whether to thin, default is YES, since 10.0.8000
@property (nonatomic, assign) BOOL reducePoint;
@end