summaryrefslogtreecommitdiff
path: root/platform/node/src/node_geojson.hpp
blob: e4b2ca47e7c168cc99614ba671b1156a049bebd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <mbgl/style/conversion/geojson.hpp>

namespace mbgl {
namespace style {
namespace conversion {

template <>
optional<GeoJSON> convertGeoJSON(const v8::Local<v8::Value>&, Error& error) {
    error = { "not implemented" };
    return {};
}

} // namespace conversion
} // namespace style
} // namespace mbgl