LaneGuidance

data class LaneGuidance(    val lanes: List<Lane>,     val laneSeparators: List<LaneSeparator>,     val routeOffset: Distance,     val length: Distance)

Contains information about lane guidance.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

lanes

Lane information.

laneSeparators

Lane separators.

routeOffset

The distance from the start of the route to the start of the lanes.

length

Length of the lane section.

Constructors

Link copied to clipboard
fun LaneGuidance(    lanes: List<Lane>,     laneSeparators: List<LaneSeparator>,     routeOffset: Distance,     length: Distance)

Properties

Link copied to clipboard
val lanes: List<Lane>
Link copied to clipboard
val laneSeparators: List<LaneSeparator>
Link copied to clipboard
val length: Distance
Link copied to clipboard
val routeOffset: Distance