summaryrefslogtreecommitdiff
path: root/platform/node/src/node_geojson.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/node/src/node_geojson.hpp')
-rw-r--r--platform/node/src/node_geojson.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/platform/node/src/node_geojson.hpp b/platform/node/src/node_geojson.hpp
new file mode 100644
index 0000000000..ace4c91426
--- /dev/null
+++ b/platform/node/src/node_geojson.hpp
@@ -0,0 +1,14 @@
+#include <mbgl/style/conversion/geojson.hpp>
+
+namespace mbgl {
+namespace style {
+namespace conversion {
+
+template <>
+Result<GeoJSON> convertGeoJSON(const v8::Local<v8::Value>&) {
+ return Error { "not implemented" };
+}
+
+} // namespace conversion
+} // namespace style
+} // namespace mbgl