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.

Constructors

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

Properties

Link copied to clipboard
Link copied to clipboard
val follow: Direction? = null