Module Values.RouteMatrixBoundaryGeometrySource

Geometry of the routing boundary.

Sourcetype nonrec t = {
  1. autoCircle : RouteMatrixAutoCircle.t option;
    (*

    Provides the circle that was used while calculating the route.

    *)
  2. circle : Circle.t option;
    (*

    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.

    *)
  3. boundingBox : BoundingBox.t option;
    (*

    Geometry defined as a bounding box. The first pair represents the X and Y coordinates (longitude and latitude,) of the southwest corner of the bounding box; the second pair represents the X and Y coordinates (longitude and latitude) of the northeast corner.

    *)
  4. polygon : RouteMatrixBoundaryGeometryPolygonList.t option;
    (*

    Geometry defined as a polygon with only one linear ring.

    *)
}
Sourceval make : ?autoCircle:??? -> ?circle:??? -> ?boundingBox:??? -> ?polygon:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Double of Double.t | `List of [> `List of [> `Double of Double.t ] list ] list ] list | `Structure of (string * [> `Double of SensitiveDouble.t | `List of [> `Double of Double.t ] list | `Long of RouteMatrixAutoCircleMarginLong.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