BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
BMKBuildingSearch.h
浏览该文件的文档.
1//
2// BMKBuildingSearch.h
3// BaiduMapAPI_Search
4//
5// Created by zhangbaojin on 2021/4/19.
6// Copyright © 2021 Baidu. All rights reserved.
7//
8
9#import "BMKSearchBase.h"
12NS_ASSUME_NONNULL_BEGIN
13
14@protocol BMKBuildingSearchDelegate;
17
19@property (nonatomic, weak) id<BMKBuildingSearchDelegate> delegate;
20
22- (BOOL)buildingSearch:(BMKBuildingSearchOption *)buildingOption;
23
24@end
25
26
27
29@protocol BMKBuildingSearchDelegate<NSObject>
30
31@optional
36- (void)onGetBuildingResult:(BMKBuildingSearch *)searcher result:(BMKBuildingSearchResult *)result errorCode:(BMKSearchErrorCode)error;
37
38
39@end
40
41
42NS_ASSUME_NONNULL_END
BMKSearchErrorCode
检索结果状态码
Definition BMKTypes.h:99
建筑物检索类,建筑物检索为高级服务,AK需要申请高级权限 since 6.4.0
Definition BMKBuildingSearch.h:17
id< BMKBuildingSearchDelegate > delegate
建筑检索模块的delegate
Definition BMKBuildingSearch.h:19
建筑物请求信息类
Definition BMKBuildingSearchOption.h:15
建筑物返回结果类
Definition BMKBuildingSearchResult.h:15
检索服务基类
Definition BMKSearchBase.h:14