RouteType

Objective-C

enum RouteType : NSInteger {}

Swift

enum RouteType : Int, @unchecked Sendable

Constants indicating the route type.

  • Route type - fastest Fastest route between the given waypoints. The default route type.

    Declaration

    Objective-C

    RouteTypeFastest = 0

    Swift

    case fastest = 0
  • Route type - shortest Shortest route between the given waypoints.

    Declaration

    Objective-C

    RouteTypeShortest

    Swift

    case shortest = 1
  • Route type - economical Economical, as fuel consumption, route between the given waypoints.

    Declaration

    Objective-C

    RouteTypeEconomic

    Swift

    case economic = 2
  • Route type - scenic @brief Fastest route, with best scenic view, between the given waypoints.

    Declaration

    Objective-C

    RouteTypeScenic

    Swift

    case scenic = 3