geojson
Geojson
module type S = sig ... end
Types for GeoJSON texts and objects
module type Json = sig ... end
Types for the JSON parser
module Make (J : Json) : S with type json = J.t
A functor that takes a JSON parsing implementation and returns a GeoJSON parser and constructor.