百度地图SDK for iOS v4.1.1 类参考
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  int _geotableId;
37  NSString *_title;
38  NSString *_address;
39  NSString *_province;
40  NSString *_city;
41  NSString *_district;
42  float _latitude;
43  float _longitude;
44  NSString *_tags;
45  float _distance;
46  float _weight;
47  NSMutableDictionary *_customDict;
48  int _creattime;
49  int _modifytime;
50  int _type;
51 
52 
53 }
55 @property (nonatomic, assign) int uid;
57 @property (nonatomic, assign) int geotableId;
59 @property (nonatomic, strong) NSString *title;
61 @property (nonatomic, strong) NSString *address;
63 @property (nonatomic, strong) NSString *province;
65 @property (nonatomic, strong) NSString *city;
67 @property (nonatomic, strong) NSString *district;
69 @property (nonatomic, assign) float latitude;
71 @property (nonatomic, assign) float longitude;
73 @property (nonatomic, strong) NSString *tags;
75 @property (nonatomic, assign) float distance;
77 @property (nonatomic, assign) float weight;
79 @property (nonatomic, strong) NSMutableDictionary *customDict;
81 @property (nonatomic, assign) int creattime;
83 @property (nonatomic, assign) int modifytime;
85 @property (nonatomic, assign) int type;
87 @property (nonatomic, strong) NSString *direction;
88 @end
89 
91 @interface BMKCloudMapPOIInfo : NSObject
92 
94 @property (nonatomic, strong) NSString *name;
96 @property (nonatomic, strong) NSString *uid;
98 @property (nonatomic, assign) CLLocationCoordinate2D pt;
100 @property (nonatomic, strong) NSString *address;
102 @property (nonatomic, strong) NSString *tags;
104 @property (nonatomic, assign) CGFloat distance;
106 @property (nonatomic, strong) NSString* direction;
107 @end
108 
110 @interface BMKCloudReverseGeoCodeResult : NSObject
111 
113 @property (nonatomic, strong) BMKAddressComponent* addressDetail;
115 @property (nonatomic, strong) NSString* address;
117 @property (nonatomic) CLLocationCoordinate2D location;
119 @property (nonatomic, strong) NSString* customLocationDescription;
121 @property (nonatomic, strong) NSString* recommendedLocationDescription;
123 @property (nonatomic, strong) NSArray* poiList;
125 @property (nonatomic, strong) NSArray* customPoiList;
126 
127 @end
128 
129 
NSString * uid
poi uid
Definition: BMKCloudPOIList.h:96
云检索结果列表类
Definition: BMKCloudPOIList.h:11
云检索结果百度地图POI信息类
Definition: BMKCloudPOIList.h:91
云检索结果信息类
Definition: BMKCloudPOIList.h:34
云RGC检索结果类
Definition: BMKCloudPOIList.h:110
NSString * direction
处于位置点的方向
Definition: BMKCloudPOIList.h:106
此类表示地址结果的层次化信息
Definition: BMKTypes.h:167
NSString * address
poi地址
Definition: BMKCloudPOIList.h:100
NSString * tags
poi标签
Definition: BMKCloudPOIList.h:102
CGFloat distance
poi距离
Definition: BMKCloudPOIList.h:104
CLLocationCoordinate2D pt
POI坐标
Definition: BMKCloudPOIList.h:98
NSString * name
poi名称
Definition: BMKCloudPOIList.h:94