1 #pragma once
2 
3 #include <mbgl/style/conversion.hpp>
4 #include <mbgl/style/sources/geojson_source.hpp>
5 
6 namespace mbgl {
7 namespace style {
8 namespace conversion {
9 
10 template <>
11 struct Converter<GeoJSONOptions> {
12     optional<GeoJSONOptions> operator()(const Convertible& value, Error& error) const;
13 };
14 
15 } // namespace conversion
16 } // namespace style
17 } // namespace mbgl
18