单军华
2018-05-04 25f409185a53e5e7beb17518a684298d92d31b3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//
//  BMKLocationReGeocode.h
//  BMKLocationKit
//
//  Created by baidu on 2017/3/2.
//  Copyright © 2017年 baidu. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BMKLocationPoi.h"
 
///BMKLocationReGeocode类。描述跟地址有关的信息.
@interface BMKLocationReGeocode : NSObject
 
///国家名字属性
@property(nonatomic, copy, readonly) NSString *country;
 
///国家编码属性
@property(nonatomic, copy, readonly) NSString *countryCode;
 
///省份名字属性
@property(nonatomic, copy, readonly) NSString *province;
 
///城市名字属性
@property(nonatomic, copy, readonly) NSString *city;
 
///区名字属性
@property(nonatomic, copy, readonly) NSString *district;
 
///街道名字属性
@property(nonatomic, copy, readonly) NSString *street;
 
///街道号码属性
@property(nonatomic, copy, readonly) NSString *streetNumber;
 
///城市编码属性
@property(nonatomic, copy, readonly) NSString *cityCode;
 
///行政区划编码属性
@property(nonatomic, copy, readonly) NSString *adCode;
 
 
///位置语义化结果的定位点在什么地方周围的描述信息
@property(nonatomic, copy, readonly) NSString *locationDescribe;
 
 
///位置语义化结果的属性,该定位点周围的poi列表信息
@property(nonatomic, retain, readonly) NSArray<BMKLocationPoi *> *poiList;
 
/**
 *  @brief 通过NSData初始化方法
 */
- (id)initWithReGeocodeString:(NSData *)reGeocodeString;
 
 
/**
 *  @brief 通过JSON初始化方法
 */
- (id)initWithJsonString:(NSData *)jsonString withHighAccuracy:(BOOL)highAcc;
 
@end