BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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
13NS_ASSUME_NONNULL_BEGIN
14
15@interface BMKRecommendStopSearchResult : NSObject
16
18@property (nonatomic, copy) NSArray<BMKRecommendStopInfo *> *recommendStopInfoList;
19
21@property (nonatomic, copy) NSArray<BMKStationRecommendStopInfo *> *stationInfoList;
22
23@end
24
25@interface BMKStationRecommendStopInfo : NSObject
27@property (nonatomic, copy) NSString *stationName;
29@property (nonatomic, copy) NSArray<BMKRecommendStopInfo *> *recommendStopsInfoList;
30
31@end
32
33
34@interface BMKRecommendStopInfo : NSObject
35
37@property (nonatomic, copy) NSString *name;
38
40@property (nonatomic, copy) NSString *address;
41
43@property (nonatomic, assign) CLLocationCoordinate2D location;
44
46@property (nonatomic, copy) NSString *uid;
47
49@property (nonatomic, assign) CGFloat distance;
50
51@end
52
53NS_ASSUME_NONNULL_END
Definition BMKRecommendStopSearchResult.h:35
Definition BMKRecommendStopSearchResult.h:16
NSArray< BMKRecommendStopInfo * > * recommendStopInfoList
推荐上车点返回结果列表,当isNeedStationInfo为NO时返回
Definition BMKRecommendStopSearchResult.h:18
NSArray< BMKStationRecommendStopInfo * > * stationInfoList
场站推荐上车点返回结果列表,当isNeedStationInfo为YES时返回
Definition BMKRecommendStopSearchResult.h:21
Definition BMKRecommendStopSearchResult.h:26