Module Values.WaypointOptimizationClusteringOptionsSource

Options for WaypointOptimizationClustering.

Sourcetype nonrec t = {
  1. algorithm : WaypointOptimizationClusteringAlgorithm.t;
    (*

    The algorithm to be used. DrivingDistance assigns all the waypoints that are within driving distance of each other into a single cluster. TopologySegment assigns all the waypoints that are within the same topology segment into a single cluster. A Topology segment is a linear stretch of road between two junctions.

    *)
  2. drivingDistanceOptions : WaypointOptimizationDrivingDistanceOptions.t option;
    (*

    Driving distance options to be used when the clustering algorithm is DrivingDistance.

    *)
}
Sourceval context_ : string
Sourceval make : ?drivingDistanceOptions:??? -> algorithm:WaypointOptimizationClusteringAlgorithm.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Long of WaypointOptimizationDrivingDistanceOptionsDrivingDistanceLong.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