百度地图SDK for iOS v4.0.0 类参考
BMKGeocodeSearchOption.h
1 /*
2  * BMKGeoCodeSearchOption.h
3  * BMapKit
4  *
5  * Copyright 2013 Baidu Inc. All rights reserved.
6  *
7  */
8 
9 #import <BaiduMapAPI_Base/BMKTypes.h>
11 @interface BMKGeoCodeSearchOption : NSObject
12 {
13  NSString *_address;
14  NSString *_city;
15 }
17 @property (nonatomic, strong) NSString *address;
19 @property (nonatomic, strong) NSString *city;
20 @end
21 
23 @interface BMKReverseGeoCodeOption : NSObject {
24  CLLocationCoordinate2D _reverseGeoPoint;
25 }
27 @property (nonatomic, assign) CLLocationCoordinate2D reverseGeoPoint;
28 @end
29 
30 
31 
geo检索信息类
Definition: BMKGeocodeSearchOption.h:11
反geo检索信息类
Definition: BMKGeocodeSearchOption.h:23