summaryrefslogtreecommitdiff
path: root/platform/ios/MGLTypes.m
diff options
context:
space:
mode:
authorJustin R. Miller <incanus@codesorcery.net>2015-02-09 18:01:40 -0800
committerJustin R. Miller <incanus@codesorcery.net>2015-02-09 18:01:40 -0800
commitd4d4cd44151423d374e373798f09d12157babc27 (patch)
treeede100edc58475b969b62fba8f3bcb219b29beda /platform/ios/MGLTypes.m
parent0ee6044ccf49bb32a25c57ce25af15bcd58ca77b (diff)
downloadqtlocation-mapboxgl-d4d4cd44151423d374e373798f09d12157babc27.tar.gz
move iOS code from gl-cocoa to this project
Diffstat (limited to 'platform/ios/MGLTypes.m')
-rw-r--r--platform/ios/MGLTypes.m24
1 files changed, 24 insertions, 0 deletions
diff --git a/platform/ios/MGLTypes.m b/platform/ios/MGLTypes.m
new file mode 100644
index 0000000000..2928bc2f4c
--- /dev/null
+++ b/platform/ios/MGLTypes.m
@@ -0,0 +1,24 @@
+#import "MGLTypes.h"
+
+NSString *const MGLStyleKeyGeneric = @"MGLStyleKeyGeneric";
+NSString *const MGLStyleKeyFill = @"MGLStyleKeyFill";
+NSString *const MGLStyleKeyLine = @"MGLStyleKeyLine";
+NSString *const MGLStyleKeyIcon = @"MGLStyleKeyIcon";
+NSString *const MGLStyleKeyText = @"MGLStyleKeyText";
+NSString *const MGLStyleKeyRaster = @"MGLStyleKeyRaster";
+NSString *const MGLStyleKeyComposite = @"MGLStyleKeyComposite";
+NSString *const MGLStyleKeyBackground = @"MGLStyleKeyBackground";
+
+NSString *const MGLStyleValueTypeBoolean = @"MGLStyleValueTypeBoolean";
+NSString *const MGLStyleValueTypeNumber = @"MGLStyleValueTypeNumber";
+NSString *const MGLStyleValueTypeNumberPair = @"MGLStyleValueTypeNumberPair";
+NSString *const MGLStyleValueTypeColor = @"MGLStyleValueTypeColor";
+NSString *const MGLStyleValueTypeString = @"MGLStyleValueTypeString";
+
+NSString *const MGLStyleValueFunctionAllowed = @"MGLStyleValueFunctionAllowed";
+
+NSString *const MGLStyleValueTypeFunctionMinimumZoom = @"MGLStyleValueTypeFunctionMinimumZoom";
+NSString *const MGLStyleValueTypeFunctionMaximumZoom = @"MGLStyleValueTypeFunctionMaximumZoom";
+NSString *const MGLStyleValueTypeFunctionLinear = @"MGLStyleValueTypeFunctionLinear";
+NSString *const MGLStyleValueTypeFunctionExponential = @"MGLStyleValueTypeFunctionExponential";
+NSString *const MGLStyleValueTypeFunctionStops = @"MGLStyleValueTypeFunctionStops";