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:
28
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAShape.h
generated
Executable file
28
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAShape.h
generated
Executable file
@ -0,0 +1,28 @@
|
||||
//
|
||||
// MAShape.h
|
||||
// MAMapKit
|
||||
//
|
||||
//
|
||||
// Copyright (c) 2011年 Amap. All rights reserved.
|
||||
//
|
||||
|
||||
#import "MAConfig.h"
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "MAAnnotation.h"
|
||||
#import "MABaseOverlay.h"
|
||||
|
||||
///该类为一个抽象类,定义了基于MAAnnotation的MAShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
|
||||
///This is an abstract class that defines the basic properties and behaviors of the MAShape class based on MAAnnotation. It cannot be used directly and must be subclassed before use.
|
||||
@interface MAShape : MABaseOverlay <MAAnnotation> {
|
||||
|
||||
NSString *_title; ///<标题 Title
|
||||
NSString *_subtitle; ///<副标题 Subtitle
|
||||
}
|
||||
|
||||
///标题 Title
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
///副标题 Subtitle
|
||||
@property (nonatomic, copy) NSString *subtitle;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user