InstructionManeuver enum

Манёвр, который необходимо совершить для движения по маршруту.

Inheritance
Available extensions

Values

none → const InstructionManeuver

Отсутствие манёвра.

const InstructionManeuver(0)
start → const InstructionManeuver

Начало движения.

const InstructionManeuver(1)
finish → const InstructionManeuver

Окончание движения.

const InstructionManeuver(2)
crossroadStraight → const InstructionManeuver

Движение через перекрёсток прямо.

const InstructionManeuver(3)
crossroadSlightlyLeft → const InstructionManeuver

Движение через перекрёсток слегка налево.

const InstructionManeuver(4)
crossroadLeft → const InstructionManeuver

Движение через перекрёсток налево.

const InstructionManeuver(5)
crossroadSharplyLeft → const InstructionManeuver

Движение через перекрёсток круто налево.

const InstructionManeuver(6)
crossroadSlightlyRight → const InstructionManeuver

Движение через перекрёсток слегка направо.

const InstructionManeuver(7)
crossroadRight → const InstructionManeuver

Движение через перекрёсток направо.

const InstructionManeuver(8)
crossroadSharplyRight → const InstructionManeuver

Движение через перекрёсток круто направо.

const InstructionManeuver(9)
crossroadKeepLeft → const InstructionManeuver

Движение через перекрёсток - держитесь левее.

const InstructionManeuver(10)
crossroadKeepRight → const InstructionManeuver

Движение через перекрёсток - держитесь правее.

const InstructionManeuver(11)
crossroadUTurn → const InstructionManeuver

Разворот на перекрёстке.

const InstructionManeuver(12)
roundaboutForward → const InstructionManeuver

Движение через перекрёсток с круговым движением прямо.

const InstructionManeuver(13)
roundaboutLeft45 → const InstructionManeuver

Движение через перекрёсток с круговым движением слегка налево.

const InstructionManeuver(14)
roundaboutLeft90 → const InstructionManeuver

Движение через перекрёсток с круговым движением налево.

const InstructionManeuver(15)
roundaboutLeft135 → const InstructionManeuver

Движение через перекрёсток с круговым движением круто налево.

const InstructionManeuver(16)
roundaboutRight45 → const InstructionManeuver

Движение через перекрёсток с круговым движением слегка направо.

const InstructionManeuver(17)
roundaboutRight90 → const InstructionManeuver

Движение через перекрёсток с круговым движением направо.

const InstructionManeuver(18)
roundaboutRight135 → const InstructionManeuver

Движение через перекрёсток с круговым движением круто направо.

const InstructionManeuver(19)
roundaboutBackward → const InstructionManeuver

Движение через перекрёсток с круговым движением в обратном направлении.

const InstructionManeuver(20)
roundaboutExit → const InstructionManeuver

Съезд с перекрёстка с круговым движением.

const InstructionManeuver(21)
uTurn → const InstructionManeuver

Разворот.

const InstructionManeuver(22)
roadCrossing → const InstructionManeuver

Составной манёвр на перекрёстке (например, пересечение двух дорог на перекрёстке для пешеходного маршрута)

const InstructionManeuver(23)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
rawValue int
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

getByValue(int value) InstructionManeuver

Constants

values → const List<InstructionManeuver>
A constant List of the values in this enum, in order of their declaration.