Loading...
Searching...
No Matches
NCDefaultNavigationViewConfig.h
Go to the documentation of this file.
1//
2// NCDefaultNavigationViewConfig.h
3// Configuration for DefaultNavigationView (visibility only)
4//
5
6#import <UIKit/UIKit.h>
7
8#import "NCDefaultNavigineViewConfig.h"
9
10NS_ASSUME_NONNULL_BEGIN
11
15typedef NS_OPTIONS(NSUInteger, NCNavigationWidgetVisibility) {
16 NCNavigationWidgetVisibilityZoomControls = 1 << 0,
17 NCNavigationWidgetVisibilityFollowMeButton = 1 << 1,
18 NCNavigationWidgetVisibilityFloorSelector = 1 << 2,
19 NCNavigationWidgetVisibilityAll = 0x7,
20};
21
36@interface NCDefaultNavigationViewConfig : NCDefaultNavigineViewConfig
37
39@property (nonatomic, assign) NCNavigationWidgetVisibility visibleWidgets;
40
41+ (instancetype)defaultConfig;
42
43@end
44
45NS_ASSUME_NONNULL_END