BaiduMap_IOSSDK_v6.5.5doc_Docs  6.5.5
BMKPoiSearchResult.h
浏览该文件的文档.
1 //
2 // BMKPOISearchResult.h
3 // SearchComponent
4 //
5 // 本文件包含所有POI检索结果类
6 // POI城市检索、POI周边检索、POI矩形区域检索服务都使用 BMKPOISearchResult 类
7 // POI详情检索使用 BMKPOIDetailSearchResult 类
8 // POI室内检索使用 BMKPOIIndoorSearchResult 类
9 //
10 // Created by Baidu on 2018年05月23日.
11 // Copyright © 2018年 baidu. All rights reserved.
12 //
13 
14 #import <Foundation/Foundation.h>
15 #import "BMKPoiSearchType.h"
16 
17 #pragma mark - POI搜索结果类
18 @interface BMKPOISearchResult : NSObject
26 @property (nonatomic, assign) NSInteger totalPOINum;
29 @property (nonatomic, assign) NSInteger totalPageNum;
31 @property (nonatomic, assign) NSInteger curPOINum;
33 @property (nonatomic, assign) NSInteger curPageIndex;
35 @property (nonatomic, copy) NSArray<BMKPoiInfo *> *poiInfoList;
36 @end
37 
38 
39 #pragma mark - POI详情检索结果类
40 @interface BMKPOIDetailSearchResult : NSObject
43 @property (nonatomic, assign) NSInteger totalPOINum;
45 @property (nonatomic, copy) NSArray<BMKPoiInfo *> *poiInfoList;
46 @end
47 
48 
49 #pragma mark - POI室内搜索结果类
50 @interface BMKPOIIndoorSearchResult : NSObject
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;
62 @end
BMKPOISearchResult::poiInfoList
NSArray< BMKPoiInfo * > * poiInfoList
POI列表,成员是BMKPoiInfo
Definition: BMKPoiSearchResult.h:35
BMKPOISearchResult::curPageIndex
NSInteger curPageIndex
当前页的页数索引
Definition: BMKPoiSearchResult.h:33
BMKPOISearchResult::totalPOINum
NSInteger totalPOINum
符合条件的检索结果总个数
Definition: BMKPoiSearchResult.h:27
BMKPOISearchResult::curPOINum
NSInteger curPOINum
当前页的结果个数
Definition: BMKPoiSearchResult.h:31
BMKPOIIndoorSearchResult
POI室内搜索结果类
Definition: BMKPoiSearchResult.h:52
BMKPOISearchResult::totalPageNum
NSInteger totalPageNum
符合条件的检索结果总页数
Definition: BMKPoiSearchResult.h:29
BMKPOIDetailSearchResult
POI详情检索结果类
Definition: BMKPoiSearchResult.h:42
BMKPOISearchResult
POI检索结果类,城市检索、周边检索、矩形区域检索服务都使用此结果类。
Definition: BMKPoiSearchResult.h:20
BMKPoiSearchType.h