Add ScenicPermission module and AMap CocoaPods with simulator support.
Integrate scenic selection and permission flows into home routing, add AMap SDK for device builds while keeping arm64 simulators compilable via Podfile post_install hooks. 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