TencentNavKit
TNKLaneInfo.h
Go to the documentation of this file.
1//
2// TNKLaneInfo.h
3// TencentNavKit
4//
5// Created by mol on 2022/11/17.
6// Copyright © 2022 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <UIKit/UIKit.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
15@interface TNKLaneInfo : NSObject
16
17- (instancetype)initWithImage:(UIImage *)image numOfLane:(int)numOfLane;
18
20@property (nonatomic, readonly) UIImage *image;
21
23@property (nonatomic, readonly) UIImage *reverseModeImage;
24
26@property (nonatomic, readonly) int numOfLane;
27
28@end
29
30NS_ASSUME_NONNULL_END
车道线信息
Definition: TNKLaneInfo.h:16
int numOfLane
车道线个数
Definition: TNKLaneInfo.h:26
UIImage * reverseModeImage
和当前模式相反的车道线图片
Definition: TNKLaneInfo.h:23
UIImage * image
当前白天模式或者暗夜模式对应的车道线图片
Definition: TNKLaneInfo.h:20