summaryrefslogtreecommitdiff
path: root/include/mbgl/style/sources/geojson_source.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/sources/geojson_source.hpp')
-rw-r--r--include/mbgl/style/sources/geojson_source.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/mbgl/style/sources/geojson_source.hpp b/include/mbgl/style/sources/geojson_source.hpp
new file mode 100644
index 0000000000..96b9a99606
--- /dev/null
+++ b/include/mbgl/style/sources/geojson_source.hpp
@@ -0,0 +1,27 @@
+#pragma once
+
+#include <mbgl/style/source.hpp>
+
+namespace mbgl {
+namespace style {
+
+class GeoJSONSource : public Source {
+public:
+ // Future public API:
+ // void setData(FeatureCollection&&);
+ // void setJSON(const std::string& json);
+ // void loadData(const std::string& url);
+
+
+ // Private implementation
+
+ class Impl;
+
+ template <class Fn>
+ GeoJSONSource(Fn&& fn)
+ : Source(SourceType::GeoJSON, fn(*this)) {
+ }
+};
+
+} // namespace style
+} // namespace mbgl