BaiduMap_IOSSDK_v6.5.8_Docs  6.5.8
BMKWalkNaviLaunchParam.h
浏览该文件的文档.
1 //
2 // BMKWalkNaviLaunchParam.h
3 // WalkCycleComponent
4 //
5 // Created by Xin,Qi on 24/01/2018.
6 // Copyright © 2018 Baidu. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 #import <CoreLocation/CoreLocation.h>
12 
13 #import "BMKWalkCycleDefine.h"
15 
17 @interface BMKWalkNaviLaunchParam : NSObject
18 
20 @property (nonatomic, assign) CLLocationCoordinate2D startPoint __deprecated_msg("已废弃since 6.4.0,请使用 startNode");
21 
23 @property (nonatomic, assign) CLLocationCoordinate2D endPoint __deprecated_msg("已废弃since 6.4.0,请使用 endNode");
24 
26 @property (nonatomic, strong) BMKWalkNaviRouteNodeInfo *startNode;
27 
29 @property (nonatomic, strong) BMKWalkNaviRouteNodeInfo *endNode;
30 
32 @property (nonatomic, copy) NSArray<BMKWalkNaviRouteNodeInfo *> *ViaNodes;
33 
34 @end
-[BMKWalkNaviLaunchParam __deprecated_msg]
CLLocationCoordinate2D startPoint __deprecated_msg("已废弃since 6.4.0,请使用 startNode")
算路起点
BMKWalkNaviRouteNodeInfo
Definition: BMKWalkNaviRouteNodeInfo.h:18
BMKWalkCycleDefine.h
BMKWalkNaviLaunchParam
算路起始点设置类
Definition: BMKWalkNaviLaunchParam.h:18
BMKWalkNaviLaunchParam::startNode
BMKWalkNaviRouteNodeInfo * startNode
算路起点参数 since 6.4.0
Definition: BMKWalkNaviLaunchParam.h:26
-[BMKWalkNaviLaunchParam __deprecated_msg]
CLLocationCoordinate2D endPoint __deprecated_msg("已废弃since 6.4.0,请使用 endNode")
算路终点
BMKWalkNaviRouteNodeInfo.h
BMKWalkNaviLaunchParam::endNode
BMKWalkNaviRouteNodeInfo * endNode
算路终点参数 since 6.4.0
Definition: BMKWalkNaviLaunchParam.h:29
BMKWalkNaviLaunchParam::ViaNodes
NSArray< BMKWalkNaviRouteNodeInfo * > * ViaNodes
算路途径点参数 since 6.5.2
Definition: BMKWalkNaviLaunchParam.h:32