LaneDirection

public enum LaneDirection : UInt32, CaseIterable, Codable

This enum defines the lane direction.

  • A lane direction that goes straight up.

    Declaration

    Swift

    case straight
  • A lane direction that goes slightly left.

    Declaration

    Swift

    case slightLeft
  • A lane direction that goes quite left.

    Declaration

    Swift

    case quiteLeft
  • A lane direction that goes hard left.

    Declaration

    Swift

    case hardLeft
  • A lane direction that makes a left u-turn.

    Declaration

    Swift

    case uTurnLeft
  • A lane direction that goes slightly right.

    Declaration

    Swift

    case slightRight
  • A lane direction that goes quite right.

    Declaration

    Swift

    case quiteRight
  • A lane direction that goes hard right.

    Declaration

    Swift

    case hardRight
  • A lane direction that makes a right u-turn.

    Declaration

    Swift

    case uTurnRight
  • A lane direction that merges with the lane one the right.

    Declaration

    Swift

    case mergeRight
  • A lane direction that merges with the lane one the left.

    Declaration

    Swift

    case mergeLeft
  • A lane direction that merges with the lane an other lane.

    Declaration

    Swift

    case mergeLanes
  • A lane direction that leads to the second turn to the right.

    Declaration

    Swift

    case secondRight
  • A lane direction that leads to the second turn to the left.

    Declaration

    Swift

    case secondLeft