Values.IsolineDestinationOptionsSourceOptions that control how the destination point is interpreted and matched to the road network when calculating reachable areas. This affects which roads are considered accessible near the destination and how the final approach is calculated.
type nonrec t = {avoidActionsForDistance : DistanceMeters.t option;The distance in meters from the destination point within which certain routing actions (such as U-turns or left turns across traffic) are restricted. This helps generate more practical routes by avoiding potentially dangerous maneuvers near the endpoint.
*)heading : Heading.t option;The initial direction of travel in degrees (0-360, where 0 is north). This can affect which road segments are considered accessible from the starting point.
*)matching : IsolineMatchingOptions.t option;Controls how the destination point is matched to the road network, including search radius and name-based matching preferences.
*)sideOfStreet : IsolineSideOfStreetOptions.t option;Specifies which side of the street should be considered accessible, which is important when building entrances or parking access points are only reachable from one side of the road.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of Heading.t
| `Long of DistanceMeters.t
| `Structure of
(string
* [> `Enum of string
| `List of [> `Double of Double.t ] list
| `Long of DistanceMeters.t
| `String of SensitiveString.t ])
list ])
list ]