14#import <Foundation/Foundation.h>
25typedef NS_ENUM(NSUInteger, BMKPOIResultType) {
26 BMK_POI_RESULT_TYPE_UNKNOWN,
27 BMK_POI_RESULT_TYPE_CITY = 1,
28 BMK_POI_RESULT_TYPE_POI,
29 BMK_POI_RESULT_TYPE_REGION,
30 BMK_POI_RESULT_TYPE_ADDRESS
39typedef NS_ENUM(NSUInteger, BMKPOIQueryType) {
40 BMK_POI_QUERY_TYPE_UNKNOWN,
41 BMK_POI_QUERY_TYPE_PRECISE,
42 BMK_POI_QUERY_TYPE_GENERAL,
46#pragma mark - POI搜索结果类
64@property (nonatomic, copy) NSArray<BMKPoiInfo *> *
poiInfoList;
66@property (nonatomic, assign) BMKPOIResultType
resultType;
68@property (nonatomic, assign) BMKPOIQueryType
queryType;
72#pragma mark - POI详情检索结果类
76@property (nonatomic, assign) NSInteger totalPOINum;
78@property (nonatomic, copy) NSArray<BMKPoiInfo *> *poiInfoList;
82#pragma mark - POI室内搜索结果类
86@property (nonatomic, assign) NSInteger totalPOINum;
88@property (nonatomic, assign) NSInteger totalPageNum;
90@property (nonatomic, assign) NSInteger curPOINum;
92@property (nonatomic, assign) NSInteger curPageIndex;
94@property (nonatomic, strong) NSArray<BMKPoiIndoorInfo *> *poiIndoorInfoList;
typedef NS_ENUM(NSUInteger, BMKPOIResultType)
Definition BMKPoiSearchResult.h:25
POI详情检索结果类
Definition BMKPoiSearchResult.h:75
POI室内搜索结果类
Definition BMKPoiSearchResult.h:85
POI检索结果类,城市检索、周边检索、矩形区域检索服务都使用此结果类。
Definition BMKPoiSearchResult.h:49
NSInteger curPOINum
当前页的结果个数
Definition BMKPoiSearchResult.h:60
BMKPOIQueryType queryType
检索查询类型
Definition BMKPoiSearchResult.h:68
NSInteger totalPageNum
符合条件的检索结果总页数
Definition BMKPoiSearchResult.h:58
NSArray< BMKPoiInfo * > * poiInfoList
检索结果列表,成员是BMKPoiInfo
Definition BMKPoiSearchResult.h:64
NSInteger curPageIndex
当前页的页数索引
Definition BMKPoiSearchResult.h:62
BMKPOIResultType resultType
检索结果类型
Definition BMKPoiSearchResult.h:66
NSInteger totalPOINum
符合条件的检索结果总个数
Definition BMKPoiSearchResult.h:56