BaiduMap_IOSSDK_v6.2.0_Docs  6.2.0
BMKRecommendStopSearchResult.h
浏览该文件的文档.
1 //
2 // BMKRecommendStopSearchResult.h
3 // BaiduMapAPI_Search
4 //
5 // Created by Baidu on 2020/7/27.
6 // Copyright © 2020 Baidu. All rights reserved.
7 //
8 
9 #import <BaiduMapAPI_Base/BMKTypes.h>
10 
12 
13 NS_ASSUME_NONNULL_BEGIN
14 
15 @interface BMKRecommendStopSearchResult : NSObject
16 
18 @property (nonatomic, copy) NSArray<BMKRecommendStopInfo *> *recommendStopInfoList;
19 
20 @end
21 
22 
23 @interface BMKRecommendStopInfo : NSObject
24 
26 @property (nonatomic, copy) NSString *name;
27 
29 @property (nonatomic, copy) NSString *address;
30 
32 @property (nonatomic, assign) CLLocationCoordinate2D location;
33 
35 @property (nonatomic, copy) NSString *uid;
36 
38 @property (nonatomic, assign) CGFloat distance;
39 
40 @end
41 
42 NS_ASSUME_NONNULL_END
Definition: BMKRecommendStopSearchResult.h:24
Definition: BMKRecommendStopSearchResult.h:16
NSArray< BMKRecommendStopInfo * > * recommendStopInfoList
推荐上车点返回结果列表
Definition: BMKRecommendStopSearchResult.h:18