BaiduMap_IOSSDK_v7.1.0_Docs  7.1.0
BMKCycleNaviRouteNodeInfo.h
浏览该文件的文档.
1 //
2 // BMKCycleNaviRouteNodeInfo.h
3 // BaiduMapAPI_WalkNavi
4 //
5 // Created by v_wangdachuan on 2023/10/27.
6 // Copyright © 2023 Baidu. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 #import <CoreLocation/CoreLocation.h>
12 
13 #import "BMKWalkCycleDefine.h"
14 NS_ASSUME_NONNULL_BEGIN
15 
17 @interface BMKCycleNaviRouteNodeInfo : NSObject
19 @property (nonatomic, assign) CLLocationCoordinate2D location;
21 @property (nonatomic, copy) NSString *keyword;
23 @property (nonatomic, copy) NSString *poiId;
25 @property (nonatomic, assign) BMKWalkNavigationRouteNodeType type;
26 @end
27 
28 NS_ASSUME_NONNULL_END
BMKCycleNaviRouteNodeInfo::keyword
NSString * keyword
算路关键字 暂不支持传入关键字
Definition: BMKCycleNaviRouteNodeInfo.h:21
BMKCycleNaviRouteNodeInfo::poiId
NSString * poiId
算路节点poiid ,在已知起点POI 的 id 情况下,请尽量填写poiId,将提升路线规划的准确性
Definition: BMKCycleNaviRouteNodeInfo.h:23
BMKWalkCycleDefine.h
BMKCycleNaviRouteNodeInfo::location
CLLocationCoordinate2D location
算路经纬度坐标,必选
Definition: BMKCycleNaviRouteNodeInfo.h:19
BMKCycleNaviRouteNodeInfo::type
BMKWalkNavigationRouteNodeType type
算路方式,目前仅支持BMKWalkNavigationRouteNodeLocation类型
Definition: BMKCycleNaviRouteNodeInfo.h:25
BMKCycleNaviRouteNodeInfo
since 6.6.0骑行引擎算路支持传入poiid
Definition: BMKCycleNaviRouteNodeInfo.h:18