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
8NS_ASSUME_NONNULL_BEGIN
9
13typedef NS_OPTIONS(NSUInteger, NCNavigationWidgetVisibility) {
14 NCNavigationWidgetVisibilityZoomControls = 1 << 0,
15 NCNavigationWidgetVisibilityFollowMeButton = 1 << 1,
16 NCNavigationWidgetVisibilityFloorSelector = 1 << 2,
17 NCNavigationWidgetVisibilityAll = 0x7,
18};
19
34@interface NCDefaultNavigationViewConfig : NSObject
35
37@property (nonatomic, assign) NCNavigationWidgetVisibility visibleWidgets;
38
39+ (instancetype)defaultConfig;
40
41@end
42
43NS_ASSUME_NONNULL_END