14#import <Foundation/Foundation.h>
17#pragma mark - POI搜索结果类
35@property (nonatomic, copy) NSArray<BMKPoiInfo *> *
poiInfoList;
39#pragma mark - POI详情检索结果类
43@property (nonatomic, assign) NSInteger totalPOINum;
45@property (nonatomic, copy) NSArray<BMKPoiInfo *> *poiInfoList;
49#pragma mark - POI室内搜索结果类
53@property (nonatomic, assign) NSInteger totalPOINum;
55@property (nonatomic, assign) NSInteger totalPageNum;
57@property (nonatomic, assign) NSInteger curPOINum;
59@property (nonatomic, assign) NSInteger curPageIndex;
61@property (nonatomic, strong) NSArray<BMKPoiIndoorInfo *> *poiIndoorInfoList;
POI详情检索结果类
Definition BMKPoiSearchResult.h:42
POI室内搜索结果类
Definition BMKPoiSearchResult.h:52
POI检索结果类,城市检索、周边检索、矩形区域检索服务都使用此结果类。
Definition BMKPoiSearchResult.h:20
NSInteger curPOINum
当前页的结果个数
Definition BMKPoiSearchResult.h:31
NSInteger totalPageNum
符合条件的检索结果总页数
Definition BMKPoiSearchResult.h:29
NSArray< BMKPoiInfo * > * poiInfoList
POI列表,成员是BMKPoiInfo
Definition BMKPoiSearchResult.h:35
NSInteger curPageIndex
当前页的页数索引
Definition BMKPoiSearchResult.h:33
NSInteger totalPOINum
符合条件的检索结果总个数
Definition BMKPoiSearchResult.h:27