summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLGeoJSONSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/MGLGeoJSONSource.h')
-rw-r--r--platform/darwin/src/MGLGeoJSONSource.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/platform/darwin/src/MGLGeoJSONSource.h b/platform/darwin/src/MGLGeoJSONSource.h
new file mode 100644
index 0000000000..58c0f6b794
--- /dev/null
+++ b/platform/darwin/src/MGLGeoJSONSource.h
@@ -0,0 +1,9 @@
+#import "MGLSource.h"
+
+@interface MGLGeoJSONSource : MGLSource
+
+@property (nonatomic, readonly, copy) NSString *data;
+
+- (instancetype)initWithSourceIdentifier:(NSString *)sourceIdentifier URL:(NSURL *)url NS_DESIGNATED_INITIALIZER;
+
+@end