BaiduMap_IOSSDK_v6.6.5_Docs 6.6.5
载入中...
搜索中...
未找到
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
11NS_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
30NS_ASSUME_NONNULL_END
建筑物返回结果类
Definition BMKBuildingSearchResult.h:15
NSArray< BMKBuildInfo * > * buildingList
建筑物返回结果列表
Definition BMKBuildingSearchResult.h:24
int relation
位置与建筑物的关系(1:在建筑物里面;0:在建筑物外面)
Definition BMKBuildingSearchResult.h:17
int distance
Definition BMKBuildingSearchResult.h:21