ItineraryPoint

data class ItineraryPoint(val place: Place, val heading: Angle? = null)

Encapsulates Place with the additional information relevant for the route itinerary.

Parameters

place
heading

Angle at which this itinerary point should be approached or departed. Counted from north in clockwise direction and in range [0, 360).

Constructors

Link copied to clipboard
fun ItineraryPoint(place: Place, heading: Angle? = null)

Properties

Link copied to clipboard
val heading: Angle? = null
Link copied to clipboard

A unique identifier of the itinerary point.

Link copied to clipboard