RouteWaypointsOption

Objective-C

enum RouteWaypointsOption : NSInteger {}

Swift

enum RouteWaypointsOption : Int, @unchecked Sendable

Constants indicating the route waypoints options.

  • Initial route calculation waypoints.

    Declaration

    Objective-C

    RouteWaypointsOptionInitial = 0

    Swift

    case initial = 0
  • Remaining to travel set from the initial calculation waypoints. Navigating a route will remove all passed by intermediate waypoints.

    Declaration

    Objective-C

    RouteWaypointsOptionRemainingInitial

    Swift

    case remainingInitial = 1
  • Remaining to travel set ( user set + service added set ). Routing service may add additional waypoints to route result, e.g. for follow track and EV routing

    Declaration

    Objective-C

    RouteWaypointsOptionRemaining

    Swift

    case remaining = 2