BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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, copy) NSArray <BMKMassTransitRouteLine *> *routes;
64
66@property (nonatomic, assign) NSInteger totalRoutes;
67
69@property (nonatomic, strong) BMKTaxiInfo *taxiInfo;
70
71@end
72
73
75@interface BMKRidingRouteResult : NSObject
76
78@property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
79
81@property (nonatomic, copy) NSArray <BMKRidingRouteLine *> *routes;
82
83@end
84
85
87@interface BMKIndoorRouteResult : NSObject
88
90@property (nonatomic, copy) NSArray <BMKIndoorRouteLine *> *routes;
91
92@end
93
95@interface BMKIntegralRouteResult : NSObject
96
98@property (nonatomic, copy) NSArray <BMKIntegralRouteLine *> *routes;
99
100@end
驾车路线规划结果类
Definition BMKRouteSearchResult.h:29
BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空")
该路线打车信息
室内路线规划结果类
Definition BMKRouteSearchResult.h:88
一体化路线规划结果类
Definition BMKRouteSearchResult.h:96
跨城路线规划结果类
Definition BMKRouteSearchResult.h:58
骑行路线规划结果类
Definition BMKRouteSearchResult.h:76
Definition BMKRouteSearchType.h:447
打车信息类
Definition BMKRouteSearchType.h:95
公交路线规划结果类
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