Module Values.LocationSource

Represents a latitude and longitude pair, expressed in geographic coordinate system degrees (for example, 47.6204, -122.3491). Elevation is currently not supported.

Sourcetype nonrec t = {
  1. latitude : Double.t;
    (*

    The latitude.

    *)
  2. longitude : Double.t;
    (*

    The longitude.

    *)
}
Sourceval context_ : string
Sourceval make : latitude:Double.t -> longitude:Double.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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