TencentNavKit
TNKParallelRoadStatus.h
Go to the documentation of this file.
1//
2// TNKParallelRoadStatus.h
3// TencentNavKit
4//
5// Created by mol on 2022/11/1.
6// Copyright © 2022 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <TencentNavKit/TNKDriveCommonObj.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
17@interface TNKParallelRoadStatus : NSObject
18
22@property (nonatomic, assign) TNKRoadType currentRoadType;
23
27@property (nonatomic, assign) TNKRoadType firstHintRoadType;
28
32@property (nonatomic, assign) TNKRoadType secondHintRoadType;
33
34@end
35
36NS_ASSUME_NONNULL_END
enum _TNKRoadType TNKRoadType
路段的详细类型
平行路状态。
Definition: TNKParallelRoadStatus.h:18
TNKRoadType secondHintRoadType
第二个可切换的平行路。为TNKRoadType_None时表示没有第二个可切换的平行路
Definition: TNKParallelRoadStatus.h:32
TNKRoadType firstHintRoadType
第一个可切换的平行路。为TNKRoadType_None时表示没有可切换的平行路
Definition: TNKParallelRoadStatus.h:27
TNKRoadType currentRoadType
当前道路类型
Definition: TNKParallelRoadStatus.h:22