Module Values.IsolineAllowOptionsSource

Special road types or features that should be considered available for routing. For example, this attribute can be used to allow the use of HOV (high-occupancy vehicle) or HOT (high-occupancy toll) lanes, even if they would otherwise not be.

Sourcetype nonrec t = {
  1. hot : SensitiveBoolean.t option;
    (*

    When true, allows the use of HOT (high-occupancy toll) lanes, which may affect travel times and reachable areas. Default value: false

    *)
  2. hov : SensitiveBoolean.t option;
    (*

    When true, allows the use of HOV (high-occupancy vehicle) lanes, which may affect travel times and reachable areas. Default value: false

    *)
}
Sourceval make : ?hot:??? -> ?hov:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t ]) 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