百度地图SDK for iOS v3.4.4 类参考
BMKGeocodeType.h
1 /*
2  * BMKGeocodeType.h
3  * BMapKit
4  *
5  * Copyright 2011 Baidu Inc. All rights reserved.
6  *
7  */
8 
9 #import <BaiduMapAPI_Base/BMKTypes.h>
10 
12 @interface BMKReverseGeoCodeResult : NSObject
13 {
14  BMKAddressComponent* _addressDetail;
15  NSString* _address;
16  CLLocationCoordinate2D _location;
17  NSArray* _poiList;
18 }
20 @property (nonatomic, strong) BMKAddressComponent* addressDetail;
22 @property (nonatomic, strong) NSString* address;
24 @property (nonatomic, strong) NSString* businessCircle;
26 @property (nonatomic, strong) NSString* sematicDescription;
28 @property (nonatomic, strong) NSString* cityCode;
30 @property (nonatomic) CLLocationCoordinate2D location;
32 @property (nonatomic, strong) NSArray* poiList;
33 
34 @end
35 
37 @interface BMKGeoCodeResult : NSObject
38 {
39  CLLocationCoordinate2D _location;
40  NSString* _address;
41 }
43 @property (nonatomic) CLLocationCoordinate2D location;
45 @property (nonatomic,strong) NSString* address;
46 
47 @end
48 
49 
50 
地址编码结果
Definition: BMKGeocodeType.h:37
此类表示地址结果的层次化信息
Definition: BMKTypes.h:167
反地址编码结果
Definition: BMKGeocodeType.h:12