summaryrefslogtreecommitdiff
path: root/platform/node/src/node_geojson.hpp
blob: ace4c9142640a3de0bdf32b0efb298c61491cb89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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