BaiduMap_IOSSDK_v6.5.5doc_Docs  6.5.5
BMKRecommendStopSearch.h
浏览该文件的文档.
1 //
2 // BMKRecommendStopSearch.h
3 // BaiduMapAPI_Search
4 //
5 // Created by Baidu on 2020/7/27.
6 // Copyright © 2020 Baidu. All rights reserved.
7 //
8 
9 #import "BMKSearchBase.h"
10 #import <BaiduMapAPI_Base/BMKTypes.h>
13 
15 NS_ASSUME_NONNULL_BEGIN
16 
19 
20 
22 @property (nonatomic, weak) id<BMKRecommendStopSearchDelegate> delegate;
23 
24 
28 - (BOOL)recommendStopSearch:(BMKRecommendStopSearchOption *)recommendStopOption;
29 
30 @end
31 
33 @protocol BMKRecommendStopSearchDelegate<NSObject>
34 @optional
35 
40 - (void)onGetRecommendStopResult:(BMKRecommendStopSearch *)searcher
41  result:(BMKRecommendStopSearchResult *)recommendStopResult
42  errorCode:(BMKSearchErrorCode)errorCode;
43 
44 @end
45 
46 NS_ASSUME_NONNULL_END
BMKRecommendStopSearchOption.h
BMKRecommendStopSearchDelegate-p
搜索delegate,用于获取搜索结果
Definition: BMKRecommendStopSearch.h:33
BMKSearchBase.h
BMKSearchErrorCode
BMKSearchErrorCode
检索结果状态码
Definition: BMKTypes.h:97
BMKRecommendStopSearchResult.h
BMKRecommendStopSearchResult
Definition: BMKRecommendStopSearchResult.h:16
BMKRecommendStopSearch
推荐上车点检索服务
Definition: BMKRecommendStopSearch.h:19
BMKSearchBase
检索服务基类
Definition: BMKSearchBase.h:14
BMKRecommendStopSearchOption
Definition: BMKRecommendStopSearchOption.h:14
BMKRecommendStopSearch::delegate
id< BMKRecommendStopSearchDelegate > delegate
推荐上车点检索模块的Delegate
Definition: BMKRecommendStopSearch.h:22