BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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搜索结果类
19@interface BMKPOISearchResult : NSObject
27@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详情检索结果类
41@interface BMKPOIDetailSearchResult : NSObject
43@property (nonatomic, assign) NSInteger totalPOINum;
45@property (nonatomic, copy) NSArray<BMKPoiInfo *> *poiInfoList;
46@end
47
48
49#pragma mark - POI室内搜索结果类
51@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
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