BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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
20@property (nonatomic, copy) NSArray<BMKBuildInfo *> *buildingList;
21
22@end
23
24
25
26NS_ASSUME_NONNULL_END
建筑物返回结果类
Definition BMKBuildingSearchResult.h:15
NSArray< BMKBuildInfo * > * buildingList
建筑物返回结果列表
Definition BMKBuildingSearchResult.h:20
int relation
位置与建筑物的关系(1:在建筑物里面;0:在建筑物外面)
Definition BMKBuildingSearchResult.h:17