summaryrefslogtreecommitdiff
path: root/platform/node/src/node_geojson.hpp
blob: 9bae86b76aa13a8e7b46db75ce595bd3b2f2b692 (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> Converter<GeoJSON>::operator()(const v8::Local<v8::Value>&, Error& error) const {
    error = { "not implemented" };
    return {};
}

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