This commit is contained in:
DDIsFriend
2023-08-18 17:28:57 +08:00
commit f0e8a1709d
4282 changed files with 192396 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
//
// MAOfflineMapViewController.h
// MAMapKit
//
// Created by hanxiaoming on 2017/12/14.
// Copyright © 2017年 Amap. All rights reserved.
//
#import "MAConfig.h"
#if MA_INCLUDE_OFFLINE
#import <UIKit/UIKit.h>
#import "MAOfflineMap.h"
///离线地图ViewControllersince 5.7.0
@interface MAOfflineMapViewController : UIViewController
/// MAOfflineMapViewController单例请使用单例以保证离线地图状态正确同步。
+ (instancetype)sharedInstance;
///MAOfflineMap实例
@property (nonatomic, readonly) MAOfflineMap *offlineMap;
@end
#endif