summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLBaseStyleLayer.h
blob: 597b67cdc215dd2eeb674281ea8904dab0a94a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import <Foundation/Foundation.h>

@interface MGLBaseStyleLayer : NSObject

@property (nonatomic, assign, getter=isVisible) BOOL visible;

/**
 The maximum zoom level on which the layer gets parsed and appears on.
 */
@property (nonatomic, assign) float maximumZoomLevel;

/**
 The minimum zoom level on which the layer gets parsed and appears on.
 */
@property (nonatomic, assign) float minimumZoomLevel;

/**
 Updates the layer’s layout and paint properties.
 */
- (void)update;

@end