Lane

data class Lane(val directions: List<Direction>, val follow: Direction? = null)

Contains lane information including lane direction. Where possible, indicates which lane the driver should follow.

Parameters

directions

List of lane directions.

follow

Optional lane direction the driver should follow.

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

Constructors

Link copied to clipboard
fun Lane(directions: List<Direction>, follow: Direction? = null)

Properties

Link copied to clipboard
val directions: List<Direction>
Link copied to clipboard
val follow: Direction? = null