RouteAlgorithmType

Objective-C

enum RouteAlgorithmType : NSInteger {}

Swift

enum RouteAlgorithmType : Int, @unchecked Sendable

Constants indicating the algorithm type.

  • Algorithm type - departure / starting point.

    Declaration

    Objective-C

    RouteAlgorithmTypeDeparture = 0

    Swift

    case departure = 0
  • Algorithm type - arrival / destination point.

    Declaration

    Objective-C

    RouteAlgorithmTypeArrival

    Swift

    case arrival = 1