Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type json = Ezjsone.value
The internal representation of a JSON value.
module Geometry : sig ... end
Geometries
module Feature : sig ... end
Features which contain a geometry
type geojson =
| Feature of Feature.t
| FeatureCollection of Feature.Collection.t
| Geometry of Geometry.t
A geojson
object which could be a geometry, a feature or a collection of features.
val bbox : t -> float array option
bbox t
will extract bbox value from t (a GeoJSON object)
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.
module Accessor : sig ... end
module Random : sig ... end