BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
BMKAOISearchResult.h
浏览该文件的文档.
1//
2// BMKAOISearchResult.h
3// BaiduMapAPI_Search
4//
5// Created by zhangbaojin on 2023/3/9.
6// Copyright © 2023 Baidu. All rights reserved.
7//
8
9#import <BaiduMapAPI_Base/BMKTypes.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@class BMKAOIInfo;
14
16@interface BMKAOISearchResult : NSObject
17
19@property (nonatomic, copy) NSArray<BMKAOIInfo *> *aoiInfoList;
20
21@end
22
38
39
41@interface BMKAOIInfo : NSObject
42
45@property (nonatomic, assign, readonly) int order;
46
48@property (nonatomic, copy, readonly) NSString *uid;
49
51@property (nonatomic, copy, readonly) NSString *name;
52
54@property (nonatomic, assign, readonly) BMKAOIType type;
55
57@property (nonatomic, copy, readonly) NSString *paths;
58
61@property (nonatomic, assign, readonly) int nearestDistance;
62
65@property (nonatomic, assign, readonly) int relation;
66
67@end
68
69NS_ASSUME_NONNULL_END
BMKAOIType
aoi类型
Definition BMKAOISearchResult.h:24
@ BMK_AOI_TYPE_RAILWAT_STATION
火车站
Definition BMKAOISearchResult.h:27
@ BMK_AOI_TYPE_PARK
公园
Definition BMKAOISearchResult.h:34
@ BMK_AOI_TYPE_GAS_STATION
加油站
Definition BMKAOISearchResult.h:29
@ BMK_AOI_TYPE_AIRPORT
机场
Definition BMKAOISearchResult.h:26
@ BMK_AOI_TYPE_SHOPPINGMALL
商场
Definition BMKAOISearchResult.h:28
@ BMK_AOI_TYPE_FREEWAY_SERVICE
服务区
Definition BMKAOISearchResult.h:35
@ BMK_AOI_TYPE_HOSPITAL
医院
Definition BMKAOISearchResult.h:31
@ BMK_AOI_TYPE_RESIDENTIAL_DISTRICT
住宅区
Definition BMKAOISearchResult.h:32
@ BMK_AOI_TYPE_WATER
水域
Definition BMKAOISearchResult.h:36
@ BMK_AOI_TYPE_UNKNOWN
未知类型
Definition BMKAOISearchResult.h:25
@ BMK_AOI_TYPE_SCHOOL
学校
Definition BMKAOISearchResult.h:30
@ BMK_AOI_TYPE_SCENIC_AREA
风景区
Definition BMKAOISearchResult.h:33
aoi信息类
Definition BMKAOISearchResult.h:42
aoi检索返回结果类
Definition BMKAOISearchResult.h:17
NSArray< BMKAOIInfo * > * aoiInfoList
aoi信息数组
Definition BMKAOISearchResult.h:19