aboutsummaryrefslogtreecommitdiff
path: root/iosApp/WhirlyGlobeMaplyComponent.xcframework/ios-arm64/WhirlyGlobeMaplyComponent.framework/Headers/NSDictionary+StyleRules.h
blob: 9c4ab965d0cce8a300e8294b0ac4227129c8f89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
//  NSDictionary+StyleRules.h
//  WhirlyGlobe-MaplyComponent
//
//  Created by Jesse Crocker on 4/9/14.
//
//

#import <Foundation/Foundation.h>

@interface NSMutableDictionary (StyleRules)

- (NSMutableArray*)styles;
- (NSMutableArray*)rules;
- (NSMutableArray*)symbolizers;
- (NSMutableArray*)layers;
- (NSString*)filter;
- (void)setFilter:(NSString*)filter;
- (NSString*)name;

- (NSNumber*)minScaleDenom;
- (void)setMinScaleDenom:(NSNumber*)num;
- (NSNumber*)maxScaleDenom;
- (void)setMaxScaleDenom:(NSNumber*)num;
- (NSMutableDictionary*)parameters;

@end

// A function we can call to force the linker to bring in categories
#ifdef __cplusplus
extern "C"
#endif
void NSDictionaryStyleDummyFunc(void);