You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
574 B
26 lines
574 B
// |
|
// 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" |
|
|
|
///离线地图ViewController(since 5.7.0) |
|
@interface MAOfflineMapViewController : UIViewController |
|
|
|
/// MAOfflineMapViewController单例,请使用单例以保证离线地图状态正确同步。 |
|
+ (instancetype)sharedInstance; |
|
|
|
///MAOfflineMap实例 |
|
@property (nonatomic, readonly) MAOfflineMap *offlineMap; |
|
|
|
@end |
|
|
|
#endif
|
|
|