TencentNavKit
TNKUserLocationPresentation.h
Go to the documentation of this file.
1//
2// TNKUserLocationPresentation.h
3// TencentNavKit
4//
5// Created by mol on 2022/12/21.
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 TNKUserLocationConfig : NSObject
16
18@property (nonatomic, strong) UIImage *locatorImage;
20@property (nonatomic, strong) UIImage *weakLocatorImage;
22@property (nonatomic, strong) UIImage *eastImage;
24@property (nonatomic, strong) UIImage *southImage;
26@property (nonatomic, strong) UIImage *westImage;
28@property (nonatomic, strong) UIImage *northImage;
30@property (nonatomic, strong) UIImage *circleImage;
31@end
32
34@interface TNKUserLocationPresentation : NSObject
35
37@property (nonatomic, strong, nullable)TNKUserLocationConfig *dayUserLocationConfig;
38
40@property (nonatomic, strong, nullable)TNKUserLocationConfig *nightUserLocationConfig;
41
42@end
43
44NS_ASSUME_NONNULL_END
日夜间自车点配置类, 下列属性如果为nil,则使用默认值
Definition: TNKUserLocationPresentation.h:16
UIImage * weakLocatorImage
信号弱时的自车点图片
Definition: TNKUserLocationPresentation.h:20
UIImage * westImage
西
Definition: TNKUserLocationPresentation.h:26
UIImage * eastImage
Definition: TNKUserLocationPresentation.h:22
UIImage * southImage
Definition: TNKUserLocationPresentation.h:24
UIImage * locatorImage
自车点图片
Definition: TNKUserLocationPresentation.h:18
UIImage * circleImage
圆环
Definition: TNKUserLocationPresentation.h:30
UIImage * northImage
Definition: TNKUserLocationPresentation.h:28
自车点配置类
Definition: TNKUserLocationPresentation.h:35