BaiduMap_IOSSDK_v6.2.0_Docs  6.2.0
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;
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;
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 
此类表示地址结果的层次化信息
Definition: BMKTypes.h:342
云检索结果百度地图POI信息类
Definition: BMKCloudPOIList.h:95
CLLocationCoordinate2D pt
POI坐标
Definition: BMKCloudPOIList.h:101
NSString * address
poi地址
Definition: BMKCloudPOIList.h:103
NSString * uid
poi uid
Definition: BMKCloudPOIList.h:99
NSString * name
poi名称
Definition: BMKCloudPOIList.h:97
CGFloat distance
poi距离
Definition: BMKCloudPOIList.h:107
NSString * direction
处于位置点的方向
Definition: BMKCloudPOIList.h:109
NSString * tags
poi标签
Definition: BMKCloudPOIList.h:105
云检索结果信息类
Definition: BMKCloudPOIList.h:34
NSString * _address
Definition: BMKCloudPOIList.h:39
int _uid
Definition: BMKCloudPOIList.h:35
int _modifytime
Definition: BMKCloudPOIList.h:50
int _creattime
Definition: BMKCloudPOIList.h:49
NSString * _district
Definition: BMKCloudPOIList.h:42
int _type
Definition: BMKCloudPOIList.h:51
int uid __deprecated_msg("自4.4.0开始废弃")
poi数据id,废弃
NSString * _tags
Definition: BMKCloudPOIList.h:45
int _geotableId
Definition: BMKCloudPOIList.h:37
NSMutableDictionary * _customDict
Definition: BMKCloudPOIList.h:48
double _longitude
Definition: BMKCloudPOIList.h:44
double _latitude
Definition: BMKCloudPOIList.h:43
float _distance
Definition: BMKCloudPOIList.h:46
NSString * _title
Definition: BMKCloudPOIList.h:38
NSString * _poiId
Definition: BMKCloudPOIList.h:36
NSString * _province
Definition: BMKCloudPOIList.h:40
float _weight
Definition: BMKCloudPOIList.h:47
NSString * _city
Definition: BMKCloudPOIList.h:41
云检索结果列表类
Definition: BMKCloudPOIList.h:11
NSInteger _total
Definition: BMKCloudPOIList.h:13
NSInteger _pageNum
Definition: BMKCloudPOIList.h:15
NSInteger _size
Definition: BMKCloudPOIList.h:14
NSArray * _POIs
Definition: BMKCloudPOIList.h:16
NSInteger _status
Definition: BMKCloudPOIList.h:12
云RGC检索结果类
Definition: BMKCloudPOIList.h:114