Blame view

Pods/AMap3DMap/MAMapKit.framework/Headers/MAOfflineProvince.h 459 Bytes
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  //
  //  MAOfflineProvince.h
  //  MapKit_static
  //
  //  Created by songjian on 14-4-24.
  //  Copyright © 2016 Amap. All rights reserved.
  //
  
  #import "MAConfig.h"
  
  #if MA_INCLUDE_OFFLINE
  
  #import "MAOfflineItem.h"
  #import "MAOfflineItemCommonCity.h"
  
  ///离线地图,省地图信息
  @interface MAOfflineProvince : MAOfflineItem
  
  ///包含的城市数组(都是MAOfflineItemCommonCity类型)
  @property (nonatomic, strong, readonly) NSArray *cities;
  
  @end
  
  #endif