Module Values.IsolineTravelModeOptionsSource

Mode-specific routing options that further refine how reachable areas are calculated. Options are only considered when they match the selected travel mode.

Sourcetype nonrec t = {
  1. car : IsolineCarOptions.t option;
    (*

    Options specific to passenger vehicle routing (Car, such as vehicle characteristics and license plate restrictions.

    *)
  2. scooter : IsolineScooterOptions.t option;
    (*

    Options specific to scooter routing (Scooter, such as vehicle characteristics and license plate restrictions. When using the Scooter travel mode, controlled-access highways are automatically avoided unless explicitly allowed.

    *)
  3. truck : IsolineTruckOptions.t option;
    (*

    Options specific to commercial truck routing (Truck, including vehicle dimensions, weight limits, and hazardous cargo specifications.

    *)
}
Sourceval make : ?car:??? -> ?scooter:??? -> ?truck:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of IsolineCarOptionsMaxSpeedDouble.t | `Enum of string | `Integer of IsolineCarOptionsOccupancyInteger.t | `List of [> `Enum of string ] list | `Long of WeightKilograms.t | `String of TunnelRestrictionCode.t | `Structure of (string * [> `Integer of IsolineTrailerOptionsAxleCountInteger.t | `Long of WeightKilograms.t | `String of IsolineVehicleLicensePlateLastCharacterString.t ]) list ]) 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