9 #import <CoreLocation/CoreLocation.h>
10 #import <Foundation/Foundation.h>
11 #import <UIKit/UIKit.h>
31 #pragma mark - POI详情子节点信息类,需要权限(使用带有此权限的AK)
34 @property (nonatomic, copy) NSString *
uid;
36 @property (nonatomic, copy) NSString *
name;
38 @property (nonatomic, copy) NSString *
showName;
40 @property (nonatomic, copy) NSString *
tag;
42 @property (nonatomic, assign) CLLocationCoordinate2D
pt;
44 @property (nonatomic, copy) NSString *
address;
52 @property (nonatomic, copy) NSString *
name;
54 @property (nonatomic, assign) CLLocationCoordinate2D
pt;
56 @property (nonatomic, copy) NSString *
address;
58 @property (nonatomic, copy) NSString *phone;
60 @property (nonatomic, copy) NSString *UID;
62 @property (nonatomic, copy) NSString *province;
64 @property (nonatomic, copy) NSString *city;
66 @property (nonatomic, copy) NSString *area;
68 @property (nonatomic, copy) NSString *streetID;
70 @property (nonatomic, copy) NSString *
tag;
72 @property (nonatomic, assign) BOOL hasDetailInfo;
76 @property (nonatomic, copy) NSString *direction;
78 @property (nonatomic, assign) NSInteger distance;
80 @property (nonatomic, copy) NSString *zipCode;
86 #pragma mark - POI详情信息类
89 @property (nonatomic, assign) NSInteger distance;
91 @property (nonatomic, copy) NSString *type;
93 @property (nonatomic, copy) NSString *
tag;
95 @property (nonatomic, assign) CLLocationCoordinate2D naviLocation;
97 @property (nonatomic, copy) NSString *detailURL;
99 @property (nonatomic, assign) CGFloat price;
101 @property (nonatomic, copy) NSString *openingHours;
103 @property (nonatomic, assign) CGFloat overallRating;
105 @property (nonatomic, assign) CGFloat tasteRating;
107 @property (nonatomic, assign) CGFloat serviceRating;
109 @property (nonatomic, assign) CGFloat environmentRating;
111 @property (nonatomic, assign) CGFloat facilityRating;
113 @property (nonatomic, assign) CGFloat hygieneRating;
115 @property (nonatomic, assign) CGFloat technologyRating;
117 @property (nonatomic, assign) NSInteger imageNumber;
119 @property (nonatomic, assign) NSInteger grouponNumber;
121 @property (nonatomic, assign) NSInteger discountNumber;
123 @property (nonatomic, assign) NSInteger commentNumber;
125 @property (nonatomic, assign) NSInteger favoriteNumber;
127 @property (nonatomic, assign) NSInteger checkInNumber;
129 @property (nonatomic, copy) NSArray <BMKPOIDetailChildrenInfo *> *children;
133 #pragma mark - 室内POI信息类
137 @property (nonatomic, copy) NSString *
name;
139 @property (nonatomic, copy) NSString *UID;
141 @property (nonatomic, copy) NSString *indoorID;
143 @property (nonatomic, copy) NSString *floor;
145 @property (nonatomic, copy) NSString *
address;
147 @property (nonatomic, copy) NSString *city;
149 @property (nonatomic, copy) NSString *phone;
151 @property (nonatomic, assign) CLLocationCoordinate2D
pt;
153 @property (nonatomic, copy) NSString *
tag;
155 @property (nonatomic, assign) CGFloat price;
157 @property (nonatomic, assign) NSInteger starLevel;
159 @property (nonatomic, assign) BOOL grouponFlag;
161 @property (nonatomic, assign) BOOL takeoutFlag;
163 @property (nonatomic, assign) BOOL waitedFlag;
165 @property (nonatomic, assign) NSInteger grouponNum;
167 @property (nonatomic, assign) NSInteger discount;
@ BMKCarTrafficFIRST
驾乘检索策略常量:躲避拥堵,若无实时路况,默认按照时间优先策略
Definition: BMKPoiSearchType.h:17
@ BMKCarTimeFirst
驾乘检索策略常量:时间优先
Definition: BMKPoiSearchType.h:18
@ BMKBusNoSubway
公交检索策略常量:不含地铁
Definition: BMKPoiSearchType.h:24
@ BMKBusWalkFirst
公交检索策略常量:最小步行距离
Definition: BMKPoiSearchType.h:23
@ BMKTypeAreaPoiList
POI检索类型:范围搜索、周边搜索POI列表
Definition: BMKPoiSearchType.h:27
@ BMKTypeAreaMultiPoiList
POI检索类型:多关键字范围搜索、周边搜索POI列表
Definition: BMKPoiSearchType.h:28
@ BMKBusTransferFirst
公交检索策略常量:最少换乘
Definition: BMKPoiSearchType.h:22
@ BMKTypePoiList
POI检索类型:城市内搜索POI列表
Definition: BMKPoiSearchType.h:26
@ BMKTypeCityList
POI检索类型:城市列表
Definition: BMKPoiSearchType.h:25
@ BMKCarFeeFirst
驾乘检索策略常量:较少费用
Definition: BMKPoiSearchType.h:20
@ BMKCarDisFirst
驾乘检索策略常量:最短距离
Definition: BMKPoiSearchType.h:19
@ BMKInvalidCoordinate
无效坐标
Definition: BMKPoiSearchType.h:16
@ BMKBusTimeFirst
公交检索策略常量:时间优先
Definition: BMKPoiSearchType.h:21
Definition: BMKPoiSearchType.h:33
CLLocationCoordinate2D pt
poi子节点经纬度
Definition: BMKPoiSearchType.h:42
NSString * name
poi子点名称
Definition: BMKPoiSearchType.h:36
NSString * uid
poi子点uid
Definition: BMKPoiSearchType.h:34
NSString * showName
poi子点简称
Definition: BMKPoiSearchType.h:38
NSString * address
poi子点地址
Definition: BMKPoiSearchType.h:44
NSString * tag
poi子点类别
Definition: BMKPoiSearchType.h:40
Definition: BMKPoiSearchType.h:88
室内POI信息类
Definition: BMKPoiSearchType.h:136
POI信息类
Definition: BMKPoiSearchType.h:51