Module Values.RouteMatrixOriginOptionsSource

Origin related options.

Sourcetype nonrec t = {
  1. avoidActionsForDistance : RouteMatrixOriginOptionsAvoidActionsForDistanceLong.t option;
    (*

    Avoids actions for the provided distance. This is typically to consider for users in moving vehicles who may not have sufficient time to make an action at an origin or a destination.

    *)
  2. heading : Heading.t option;
    (*

    GPS Heading at the position.

    *)
  3. matching : RouteMatrixMatchingOptions.t option;
    (*

    Options to configure matching the provided position to the road network.

    *)
  4. sideOfStreet : RouteMatrixSideOfStreetOptions.t option;
    (*

    Options to configure matching the provided position to a side of the street.

    *)
}
Sourceval make : ?avoidActionsForDistance:??? -> ?heading:??? -> ?matching:??? -> ?sideOfStreet:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Heading.t | `Long of RouteMatrixOriginOptionsAvoidActionsForDistanceLong.t | `Structure of (string * [> `Enum of string | `List of [> `Double of Double.t ] list | `Long of RouteMatrixMatchingOptionsOnRoadThresholdLong.t | `String of SensitiveString.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