Geojson.MakeSourceA functor that takes a JSON parsing implementation and returns a GeoJSON parser and constructor.
type geojson = | Feature of Feature.t| FeatureCollection of Feature.Collection.t| Geometry of Geometry.tA geojson object which could be a geometry, a feature or a collection of features.
The type for GeoJSON objects.
v geojson bbox combines geojson and bbox to return a GeoJSON object (a type t)
of_json json converts the JSON to a GeoJSON object (a type t) or an error.