BaiduMap_IOSSDK_v6.6.7_Docs  6.6.7
BMKBuildingSearchResult.h
浏览该文件的文档.
1 //
2 // BMKBuildingSearchResult.h
3 // BaiduMapAPI_Search
4 //
5 // Created by zhangbaojin on 2021/4/19.
6 // Copyright © 2021 Baidu. All rights reserved.
7 //
8 
9 #import <BaiduMapAPI_Base/BMKTypes.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
14 @interface BMKBuildingSearchResult : NSObject
15 
17 @property (nonatomic, assign) int relation;
18 
21 @property (nonatomic, assign) int distance;
22 
24 @property (nonatomic, copy) NSArray<BMKBuildInfo *> *buildingList;
25 
26 @end
27 
28 
29 
30 NS_ASSUME_NONNULL_END
BMKBuildingSearchResult::distance
int distance
Definition: BMKBuildingSearchResult.h:21
BMKBuildingSearchResult
建筑物返回结果类
Definition: BMKBuildingSearchResult.h:15
BMKBuildingSearchResult::relation
int relation
位置与建筑物的关系(1:在建筑物里面;0:在建筑物外面)
Definition: BMKBuildingSearchResult.h:17
BMKBuildingSearchResult::buildingList
NSArray< BMKBuildInfo * > * buildingList
建筑物返回结果列表
Definition: BMKBuildingSearchResult.h:24