BaiduMap_IOSSDK_v5.4.0_Docs
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>
10 #import "BMKRouteSearchType.h"
11 
13 @interface BMKWalkingRouteResult : NSObject
15 @property (nonatomic, strong) BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空");
17 @property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
19 @property (nonatomic, copy) NSArray <BMKWalkingRouteLine *> *routes;
20 @end
21 
22 
24 @interface BMKDrivingRouteResult : NSObject
26 @property (nonatomic, strong) BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空");
28 @property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
30 @property (nonatomic, copy) NSArray <BMKDrivingRouteLine *> *routes;
31 @end
32 
34 @interface BMKTransitRouteResult : NSObject
36 @property (nonatomic, strong) BMKTaxiInfo *taxiInfo;
38 @property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
40 @property (nonatomic, copy) NSArray <BMKTransitRouteLine *> *routes;
41 @end
42 
43 
45 @interface BMKMassTransitRouteResult : NSObject
47 @property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
49 @property (nonatomic, copy) NSArray <BMKMassTransitRouteLine *> *routes;
51 @property (nonatomic, assign) NSInteger totalRoutes;
53 @property (nonatomic, strong) BMKTaxiInfo *taxiInfo;
54 @end
55 
56 
58 @interface BMKRidingRouteResult : NSObject
60 @property (nonatomic, strong) BMKSuggestAddrInfo *suggestAddrResult;
62 @property (nonatomic, copy) NSArray <BMKRidingRouteLine *> *routes;
63 @end
64 
65 
67 @interface BMKIndoorRouteResult : NSObject
69 @property (nonatomic, copy) NSArray <BMKIndoorRouteLine *> *routes;
70 @end
公交路线规划结果类
Definition: BMKRouteSearchResult.h:34
跨城路线规划结果类
Definition: BMKRouteSearchResult.h:45
Definition: BMKRouteSearchType.h:430
打车信息类
Definition: BMKRouteSearchType.h:94
NSArray< BMKWalkingRouteLine * > * routes
步行结果,现在只返回一条。成员类型为BMKWalkingRouteLine
Definition: BMKRouteSearchResult.h:19
BMKTaxiInfo *taxiInfo __deprecated_msg("预留字段,现为空")
该路线打车信息
室内路线规划结果类
Definition: BMKRouteSearchResult.h:67
BMKSuggestAddrInfo * suggestAddrResult
返回起点或终点的地址信息结果
Definition: BMKRouteSearchResult.h:17
步行路线规划结果类
Definition: BMKRouteSearchResult.h:13
骑行路线规划结果类
Definition: BMKRouteSearchResult.h:58
驾车路线规划结果类
Definition: BMKRouteSearchResult.h:24