BaiduMap_IOSSDK_v4.2.1_Docs
BMKOfflineMapType.h
1 /*
2  * BMKOffineMapType.h
3  * BMapKit
4  *
5  * Copyright 2011 Baidu Inc. All rights reserved.
6  *
7  */
8 
9 #import <Foundation/Foundation.h>
10 #import <CoreLocation/CoreLocation.h>
11 
13 @interface BMKOLSearchRecord : NSObject
14 {
15  NSString* _cityName;
16  int64_t _size;
17  int _cityID;
18  int _cityType;
19  NSArray* _childCities;
20 }
22 @property (nonatomic, strong) NSString* cityName;
24 @property (nonatomic) int64_t size;
26 @property (nonatomic) int cityID;
28 @property (nonatomic) int cityType;
30 @property (nonatomic, strong) NSArray* childCities;
31 
32 
33 @end
34 
35 
37 @interface BMKOLUpdateElement : NSObject
38 {
39  NSString* _cityName;
40  int _cityID;
41  int64_t _size;
42  int64_t _serversize;
43  BOOL _update;
44  int _ratio;
45  int _status;
46  CLLocationCoordinate2D _pt;
47 }
49 @property (nonatomic, strong) NSString* cityName;
51 @property (nonatomic) int cityID;
53 @property (nonatomic) int64_t size;
55 @property (nonatomic) int64_t serversize;
57 @property (nonatomic) int ratio;
59 @property (nonatomic) int status;
61 @property (nonatomic) BOOL update;
63 @property (nonatomic) CLLocationCoordinate2D pt;
64 
65 @end
66 
离线地图搜索城市记录结构
Definition: BMKOfflineMapType.h:13
离线地图更新信息
Definition: BMKOfflineMapType.h:37