package geojson

  1. Overview
  2. Docs
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.