TencentNavKit
TNKNavToWayPointInfo.h
Go to the documentation of this file.
1//
2// TNKNavToWayPointInfo.h
3// TencentNavKit
4//
5// Created by mol on 2022/11/11.
6// Copyright © 2022 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <CoreLocation/CLLocation.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
15
19@interface TNKNavToWayPointInfo : NSObject
20
24@property (nonatomic, strong) TNKSearchNavPoint *origSearchPoint;
25
29@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
30
34@property (nonatomic, assign) int wayPointIndex;
35
39@property (nonatomic, assign) int remainingDistance;
40
44@property (nonatomic, assign) int remainingTime;
45
50@property (nonatomic, assign) int idx;
51
52
53@end
54
55NS_ASSUME_NONNULL_END
路线规划返回的途径点类型
Definition: TNKNavToWayPointInfo.h:20
int remainingDistance
当前位置到途径点剩余距离, 单位:米
Definition: TNKNavToWayPointInfo.h:39
CLLocationCoordinate2D coordinate
吸附的坐标.
Definition: TNKNavToWayPointInfo.h:29
int remainingTime
当前位置到途径点剩余时间,单位:分钟
Definition: TNKNavToWayPointInfo.h:44
int wayPointIndex
途径点所在路线的索引
Definition: TNKNavToWayPointInfo.h:34
int idx
导航中第几个途经点。
Definition: TNKNavToWayPointInfo.h:50
TNKSearchNavPoint * origSearchPoint
请求参数中的途经点数据
Definition: TNKNavToWayPointInfo.h:24
导航算路起点、终点、途经点所使用的类
Definition: TNKCommonObj.h:65