BaiduMap_IOSSDK_v6.2.0_Docs  6.2.0
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
BMKSearchErrorCode
Definition: BMKTypes.h:98
推荐上车点检索服务
Definition: BMKRecommendStopSearch.h:19
id< BMKRecommendStopSearchDelegate > delegate
推荐上车点检索模块的Delegate
Definition: BMKRecommendStopSearch.h:22
Definition: BMKRecommendStopSearchOption.h:14
Definition: BMKRecommendStopSearchResult.h:16
检索服务基类
Definition: BMKSearchBase.h:14
搜索delegate,用于获取搜索结果
Definition: BMKRecommendStopSearch.h:33