新增景区权限模块,集成 AMap CocoaPods 并支持模拟器
将景区选择与权限申请流程接入首页路由,集成高德 SDK 用于真机构建,并通过 Podfile post_install 钩子保证 arm64 模拟器可编译。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
32
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAPolygonRenderer.h
generated
Executable file
32
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAPolygonRenderer.h
generated
Executable file
@ -0,0 +1,32 @@
|
||||
//
|
||||
// MAPolygonRenderer.h
|
||||
// MAMapKit
|
||||
//
|
||||
//
|
||||
// Copyright (c) 2011年 Amap. All rights reserved.
|
||||
//
|
||||
|
||||
#import "MAConfig.h"
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "MAPolygon.h"
|
||||
#import "MAOverlayPathRenderer.h"
|
||||
|
||||
///此类用于绘制MAPolygon,可以通过MAOverlayPathRenderer修改其fill和stroke attributes
|
||||
///This class is used to draw MAPolygon, and its fill and stroke attributes can be modified through MAOverlayPathRenderer
|
||||
@interface MAPolygonRenderer : MAOverlayPathRenderer
|
||||
|
||||
///关联的MAPolygon model
|
||||
///associated MAPolygon model
|
||||
@property (nonatomic, readonly) MAPolygon *polygon;
|
||||
|
||||
/**
|
||||
* @brief 根据指定的多边形生成一个多边形Renderer
|
||||
* Generate a polygon Renderer based on the specified polygon
|
||||
* @param polygon polygon 指定的多边形数据对象
|
||||
* polygon specifies the polygon data object
|
||||
* @return 新生成的多边形Renderer
|
||||
* newly generated polygon Renderer
|
||||
*/
|
||||
- (instancetype)initWithPolygon:(MAPolygon *)polygon;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user