BaiduMap_IOSSDK_v6.6.5_Docs 6.6.5
载入中...
搜索中...
未找到
BMKRouteSearchResult.h
浏览该文件的文档.
1//
2// BMKRouteSearchResult.h
3// BaiduMapAPI_Search
4//
5// Created by DanielBey on 2019/1/23.
6// Copyright © 2019 Baidu. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
11
13@interface BMKWalkingRouteResult : NSObject
14
16@property (nonatomic, strong) BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空");
17
19@property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
20
22@property (nonatomic, copy) NSArray <BMKWalkingRouteLine *> *routes;
23
24@end
25
26
28@interface BMKDrivingRouteResult : NSObject
29
31@property (nonatomic, strong) BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空");
32
34@property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
35
37@property (nonatomic, copy) NSArray <BMKDrivingRouteLine *> *routes;
38
39@end
40
42@interface BMKTransitRouteResult : NSObject
43
45@property (nonatomic, strong) BMKTaxiInfo *taxiInfo;
46
48@property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
49
51@property (nonatomic, copy) NSArray <BMKTransitRouteLine *> *routes;
52
53@end
54
55
57@interface BMKMassTransitRouteResult : NSObject
58
60@property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
61
63@property (nonatomic, strong) BMKPlanNode *origin;
64
66@property (nonatomic, strong) BMKPlanNode *destination;
67
69@property (nonatomic, copy) NSArray <BMKMassTransitRouteLine *> *routes;
70
72@property (nonatomic, assign) NSInteger totalRoutes;
73
75@property (nonatomic, strong) BMKTaxiInfo *taxiInfo;
76
77@end
78
79
81@interface BMKRidingRouteResult : NSObject
82
84@property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
85
87@property (nonatomic, copy) NSArray <BMKRidingRouteLine *> *routes;
88
89@end
90
91
93@interface BMKIndoorRouteResult : NSObject
94
96@property (nonatomic, copy) NSArray <BMKIndoorRouteLine *> *routes;
97
98@end
99
101@interface BMKIntegralRouteResult : NSObject
102
104@property (nonatomic, copy) NSArray <BMKIntegralRouteLine *> *routes;
105
106@end
驾车路线规划结果类
Definition BMKRouteSearchResult.h:29
BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空")
该路线打车信息
室内路线规划结果类
Definition BMKRouteSearchResult.h:94
一体化路线规划结果类
Definition BMKRouteSearchResult.h:102
跨城路线规划结果类
Definition BMKRouteSearchResult.h:58
线路检索节点信息,一个路线检索节点可以通过经纬度坐标或城市名加地名确定
Definition BMKTypes.h:354
骑行路线规划结果类
Definition BMKRouteSearchResult.h:82
Definition BMKRouteSearchType.h:549
打车信息类
Definition BMKRouteSearchType.h:145
公交路线规划结果类
Definition BMKRouteSearchResult.h:43
步行路线规划结果类
Definition BMKRouteSearchResult.h:14
BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空")
该路线打车信息
NSArray< BMKWalkingRouteLine * > * routes
步行结果,现在只返回一条。成员类型为BMKWalkingRouteLine
Definition BMKRouteSearchResult.h:22
BMKSuggestAddrInfo * suggestAddrResult
返回起点或终点的地址信息结果(当地址有歧义时返回)
Definition BMKRouteSearchResult.h:19