Module Values.CircleSource

Geometry defined as a circle. When request routing boundary was set as AutoCircle, the response routing boundary will return Circle derived from the AutoCircle settings.

Sourcetype nonrec t = {
  1. center : Position.t;
    (*

    Center of the Circle in World Geodetic System (WGS 84) format: [longitude, latitude]. Example: [-123.1174, 49.2847] represents the position with longitude -123.1174 and latitude 49.2847.

    *)
  2. radius : SensitiveDouble.t;
    (*

    Radius of the Circle. Unit: meters

    *)
}
Sourceval context_ : string
Sourceval make : center:Position.t -> radius:SensitiveDouble.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of SensitiveDouble.t | `List of [> `Double of Double.t ] list ]) 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