Module Values.IsolineGranularityOptionsSource

Controls the detail level and smoothness of generated isolines. More detailed isolines provide better visual representation of reachable areas but require more processing time and result in larger responses.

Sourcetype nonrec t = {
  1. maxPoints : IsolineGranularityOptionsMaxPointsInteger.t option;
    (*

    The maximum number of points used to define each isoline. Higher values create smoother, more detailed shapes.

    *)
  2. maxResolution : DistanceMeters.t option;
    (*

    The maximum distance in meters between points along the isoline. Smaller values create more detailed shapes. Unit: meters

    *)
}
Sourceval make : ?maxPoints:??? -> ?maxResolution:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IsolineGranularityOptionsMaxPointsInteger.t | `Long of DistanceMeters.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t