BaiduMap_IOSSDK_v5.2.0_Docs
BMKCloudPOIList.h
1 /*
2  * BMKCloudPOIList.h
3  * BMapKit
4  *
5  * Copyright 2013 Baidu Inc. All rights reserved.
6  *
7  */
8 #import <BaiduMapAPI_Base/BMKTypes.h>
9 
11 @interface BMKCloudPOIList : NSObject {
12  NSInteger _status;
13  NSInteger _total;
14  NSInteger _size;
15  NSInteger _pageNum;
16  NSArray *_POIs;
17 
18 }
20 @property (nonatomic, assign) NSInteger status;
22 @property (nonatomic, assign) NSInteger total;
24 @property (nonatomic, assign) NSInteger size;
26 @property (nonatomic, assign) NSInteger pageNum;
28 @property (nonatomic, strong) NSArray *POIs;
29 
30 @end
31 
32 
34 @interface BMKCloudPOIInfo : NSObject {
35  int _uid;
36  NSString *_poiId;
37  int _geotableId;
38  NSString *_title;
39  NSString *_address;
40  NSString *_province;
41  NSString *_city;
42  NSString *_district;
43  double _latitude;
44  double _longitude;
45  NSString *_tags;
46  float _distance;
47  float _weight;
48  NSMutableDictionary *_customDict;
49  int _creattime;
50  int _modifytime;
51  int _type;
52 
53 
54 }
56 @property (nonatomic, assign) int uid __deprecated_msg("自4.4.0开始废弃");
58 @property (nonatomic, strong) NSString *poiId;
60 @property (nonatomic, assign) int geotableId;
62 @property (nonatomic, strong) NSString *title;
64 @property (nonatomic, strong) NSString *address;
66 @property (nonatomic, strong) NSString *province;
68 @property (nonatomic, strong) NSString *city;
70 @property (nonatomic, strong) NSString *district;
72 @property (nonatomic, assign) double latitude;
74 @property (nonatomic, assign) double longitude;
76 @property (nonatomic, strong) NSString *tags;
78 @property (nonatomic, assign) float distance;
80 @property (nonatomic, assign) float weight;
82 @property (nonatomic, strong) NSMutableDictionary *customDict;
84 @property (nonatomic, assign) int creattime;
86 @property (nonatomic, assign) int modifytime;
88 @property (nonatomic, assign) int type;
90 @property (nonatomic, strong) NSString *direction;
91 @end
92 
94 @interface BMKCloudMapPOIInfo : NSObject
95 
97 @property (nonatomic, strong) NSString *name;
99 @property (nonatomic, strong) NSString *uid;
101 @property (nonatomic, assign) CLLocationCoordinate2D pt;
103 @property (nonatomic, strong) NSString *address;
105 @property (nonatomic, strong) NSString *tags;
107 @property (nonatomic, assign) CGFloat distance;
109 @property (nonatomic, strong) NSString* direction;
110 @end
111 
113 @interface BMKCloudReverseGeoCodeResult : NSObject
114 
116 @property (nonatomic, strong) BMKAddressComponent* addressDetail;
118 @property (nonatomic, strong) NSString* address;
120 @property (nonatomic) CLLocationCoordinate2D location;
122 @property (nonatomic, strong) NSString* customLocationDescription;
124 @property (nonatomic, strong) NSString* recommendedLocationDescription;
126 @property (nonatomic, strong) NSArray* poiList;
128 @property (nonatomic, strong) NSArray* customPoiList;
129 
130 @end
131 
132 
NSString * uid
poi uid
Definition: BMKCloudPOIList.h:99
云检索结果列表类
Definition: BMKCloudPOIList.h:11
云检索结果百度地图POI信息类
Definition: BMKCloudPOIList.h:94
云检索结果信息类
Definition: BMKCloudPOIList.h:34
云RGC检索结果类
Definition: BMKCloudPOIList.h:113
NSString * direction
处于位置点的方向
Definition: BMKCloudPOIList.h:109
此类表示地址结果的层次化信息
Definition: BMKTypes.h:315
NSString * address
poi地址
Definition: BMKCloudPOIList.h:103
NSString * tags
poi标签
Definition: BMKCloudPOIList.h:105
CGFloat distance
poi距离
Definition: BMKCloudPOIList.h:107
CLLocationCoordinate2D pt
POI坐标
Definition: BMKCloudPOIList.h:101
NSString * name
poi名称
Definition: BMKCloudPOIList.h:97