Files
suixinkan_ios_new/Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAShape.h
汉秋 b61bf0d070 新增景区权限模块,集成 AMap CocoaPods 并支持模拟器
将景区选择与权限申请流程接入首页路由,集成高德 SDK 用于真机构建,并通过 Podfile post_install 钩子保证 arm64 模拟器可编译。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 10:15:26 +08:00

29 lines
833 B
Objective-C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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