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:
59
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAOfflineItem.h
generated
Normal file
59
Pods/AMap3DMap-NO-IDFA/MAMapKit.framework/Headers/MAOfflineItem.h
generated
Normal file
@ -0,0 +1,59 @@
|
||||
//
|
||||
// MAOfflineItem.h
|
||||
// MapKit_static
|
||||
//
|
||||
// Created by songjian on 14-4-23.
|
||||
// Copyright © 2016 Amap. All rights reserved.
|
||||
//
|
||||
|
||||
|
||||
|
||||
#import "MAConfig.h"
|
||||
|
||||
#if MA_INCLUDE_OFFLINE
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
///离线地图item状态
|
||||
///Offline map item status
|
||||
typedef NS_ENUM(NSInteger, MAOfflineItemStatus)
|
||||
{
|
||||
MAOfflineItemStatusNone = 0, ///<不存在 Not exist
|
||||
MAOfflineItemStatusCached, ///<缓存状态 Cache status
|
||||
MAOfflineItemStatusInstalled, ///<已安装 Installed
|
||||
MAOfflineItemStatusExpired ///<已过期 Expired
|
||||
};
|
||||
|
||||
@interface MAOfflineItem : NSObject
|
||||
|
||||
///名字
|
||||
///Name
|
||||
@property (nonatomic, copy, readonly) NSString *name;
|
||||
|
||||
///简拼
|
||||
///Abbreviation
|
||||
@property (nonatomic, copy, readonly) NSString *jianpin;
|
||||
|
||||
///拼音
|
||||
///Pinyin
|
||||
@property (nonatomic, copy, readonly) NSString *pinyin;
|
||||
|
||||
///区域编码
|
||||
///Region code
|
||||
@property (nonatomic, copy, readonly) NSString *adcode;
|
||||
|
||||
///离线数据大小
|
||||
///Offline data size
|
||||
@property (nonatomic, assign, readonly) long long size;
|
||||
|
||||
///状态
|
||||
///Status
|
||||
@property (nonatomic, assign, readonly) MAOfflineItemStatus itemStatus;
|
||||
|
||||
///已下载大小(当itemStatus == MAOfflineItemStatusCached 时有效)
|
||||
///Downloaded size (valid when itemStatus == MAOfflineItemStatusCached)
|
||||
@property (nonatomic, assign, readonly) long long downloadedSize;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user