Module Values.CircleSource

A circle on the earth, as defined by a center point and a radius.

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

    A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form [longitude, latitude].

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

    The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).

    *)
}
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