百度地图SDK for iOS v4.1.1 类参考
BMKGeocodeSearchResult.h
1 //
2 // BMKGeocodeSearchResult.h
3 // SearchComponent
4 //
5 // Created by Baidu on 2018年05月24日.
6 // Copyright © 2018年 Baidu. All rights reserved.
7 //
8 
9 #import <BaiduMapAPI_Base/BMKTypes.h>
10 
11 #pragma mark - RC检索结果类
12 @interface BMKGeoCodeSearchResult : NSObject
15 @property (nonatomic, assign) CLLocationCoordinate2D location;
16 @end
17 
18 #pragma mark - RGC检索结果类
19 @interface BMKReverseGeoCodeSearchResult : NSObject
22 @property (nonatomic, assign) CLLocationCoordinate2D location;
24 @property (nonatomic, copy) NSString *address;
26 @property (nonatomic, copy) NSString *businessCircle;
28 @property (nonatomic, strong) BMKAddressComponent* addressDetail;
30 @property (nonatomic, copy) NSArray *poiList;
32 @property (nonatomic, copy) NSString *sematicDescription;
34 @property (nonatomic, copy) NSString *cityCode; __deprecated_msg("自4.1.0不再更新");
35 @end
CLLocationCoordinate2D location
地址对应的经纬度坐标
Definition: BMKGeocodeSearchResult.h:15
地址编码结果类
Definition: BMKGeocodeSearchResult.h:13
反地理编码结果类
Definition: BMKGeocodeSearchResult.h:20
此类表示地址结果的层次化信息
Definition: BMKTypes.h:167