BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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
14@protocol BMKRecommendStopSearchDelegate;
15NS_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
46NS_ASSUME_NONNULL_END
BMKSearchErrorCode
检索结果状态码
Definition BMKTypes.h:99
推荐上车点检索服务
Definition BMKRecommendStopSearch.h:19
id< BMKRecommendStopSearchDelegate > delegate
推荐上车点检索模块的Delegate
Definition BMKRecommendStopSearch.h:22
Definition BMKRecommendStopSearchOption.h:14
Definition BMKRecommendStopSearchResult.h:16
检索服务基类
Definition BMKSearchBase.h:14