Blame view

Pods/AMap3DMap/MAMapKit.framework/Headers/MAOfflineCity.h 351 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
  //
  //  MAOfflineCity.h
  //
  //  Copyright (c) 2013 Amap. All rights reserved.
  //
  
  #import "MAConfig.h"
  
  #if MA_INCLUDE_OFFLINE
  
  #import <Foundation/Foundation.h>
  #import "MAOfflineItem.h"
  
  ///离线地图,城市信息
  @interface MAOfflineCity : MAOfflineItem
  
  ///城市编码
  @property (nonatomic, copy, readonly) NSString *cityCode;
  
  @end
  
  #endif