Module Values.RouteAvoidanceAreaGeometrySource

Geometry of the area to be avoided.

Sourcetype nonrec t = {
  1. corridor : Corridor.t option;
    (*

    Geometry defined as a corridor - a LineString with a radius that defines the width of the corridor.

    *)
  2. 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.

    *)
  3. polygon : RouteAvoidanceAreaGeometryPolygonList.t option;
    (*

    Geometry defined as a polygon with only one linear ring.

    *)
  4. polylineCorridor : PolylineCorridor.t option;
    (*

    Geometry defined as an encoded corridor - an encoded polyline with a radius that defines the width of the corridor.

    *)
  5. polylinePolygon : RouteAvoidanceAreaGeometryPolylinePolygonList.t option;
    (*

    A list of Isoline PolylinePolygon, for each isoline PolylinePolygon, it contains PolylinePolygon of the first linear ring (the outer ring) and from 2nd item to the last item (the inner rings). For more information on polyline encoding, see https://github.com/aws-geospatial/polyline.

    *)
}
Sourceval make : ?corridor:??? -> ?boundingBox:??? -> ?polygon:??? -> ?polylineCorridor:??? -> ?polylinePolygon:??? -> 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 | `String of PolylineRing.t ] list | `Structure of (string * [> `Integer of Integer.t | `List of [> `List of [> `Double of Double.t ] list ] list | `String of Polyline.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