summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLBaseStyleLayer.h
blob: d7d4e70a518c7ba3cc9315bbad4475a88b042334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;

@end