BaiduMap_IOSSDK_v5.2.0_Docs
BMKCloudSearchInfo.h
1 /*
2  * BMKCloudSearchInfo.h
3  * BMapKit
4  *
5  * Copyright 2013 Baidu Inc. All rights reserved.
6  *
7  */
8 #import <Foundation/Foundation.h>
9 #import <CoreLocation/CoreLocation.h>
10 
12 @interface BMKBaseCloudSearchInfo : NSObject
13 {
14  NSString *_ak;
15  NSString *_sn;
16  int _geoTableId;
17 }
19 @property (nonatomic, strong) NSString *ak;
21 @property (nonatomic, strong) NSString *sn;
23 @property (nonatomic, assign) int geoTableId;
24 
25 @end
26 
29  NSString *_keyword;
30  NSString *_tags;
31  NSString *_sortby;
32  NSString *_filter;
33  NSInteger _pageIndex;
34  NSInteger _pageSize;
35 
36 }
38 @property (nonatomic, strong) NSString *keyword;
40 @property (nonatomic, strong) NSString *tags;
50 @property (nonatomic, strong) NSString *sortby;
59 @property (nonatomic, strong) NSString *filter;
61 
63 @property (nonatomic, assign) NSInteger pageIndex;
65 @property (nonatomic, assign) NSInteger pageSize;
66 
67 
68 @end
71  NSString *_region;
72 }
74 @property (nonatomic, strong) NSString *region;
75 @end
76 
79  NSString *_location;
80  int _radius;
81 }
83 @property (nonatomic, strong) NSString *location;
85 @property (nonatomic, assign) int radius;
86 @end
87 
90  NSString *_bounds;
91 }
93 @property (nonatomic, strong) NSString *bounds;
94 @end
95 
98  NSString *_uid;
99 }
101 @property (nonatomic, strong) NSString *uid;
102 @end
103 
105 @interface BMKCloudReverseGeoCodeSearchInfo : NSObject
106 
108 @property (nonatomic, assign) NSInteger geoTableId;
110 @property (nonatomic, assign) CLLocationCoordinate2D reverseGeoPoint;
111 
112 @end
113 
云RGC检索参数信息类
Definition: BMKCloudSearchInfo.h:105
云检索基础信息类,所有类型云检索的基类
Definition: BMKCloudSearchInfo.h:12
CLLocationCoordinate2D reverseGeoPoint
经纬度
Definition: BMKCloudSearchInfo.h:110
本地云检索参数信息类
Definition: BMKCloudSearchInfo.h:70
矩形云检索参数信息类
Definition: BMKCloudSearchInfo.h:89
本地,周边,矩形云检索基础信息类
Definition: BMKCloudSearchInfo.h:28
详情云检索参数信息类
Definition: BMKCloudSearchInfo.h:97
周边云检索参数信息类
Definition: BMKCloudSearchInfo.h:78
NSInteger geoTableId
geo table 表主键(必须)
Definition: BMKCloudSearchInfo.h:108