NTRoutingAction
enum NTRoutingAction : NSInteger {}
Routing action type.
-
Head on, start the route.
Declaration
Objective-C
NT_ROUTING_ACTION_HEAD_ON -
Finish the route.
Declaration
Objective-C
NT_ROUTING_ACTION_FINISH -
Continue along the given street, do not turn.
Declaration
Objective-C
NT_ROUTING_ACTION_NO_TURN -
Go straight.
Declaration
Objective-C
NT_ROUTING_ACTION_GO_STRAIGHT -
Turn right.
Declaration
Objective-C
NT_ROUTING_ACTION_TURN_RIGHT -
Do an u-turn.
Declaration
Objective-C
NT_ROUTING_ACTION_UTURN -
Turn left.
Declaration
Objective-C
NT_ROUTING_ACTION_TURN_LEFT -
Reached given via point. If this is the final point, FINISH action is used instead.
Declaration
Objective-C
NT_ROUTING_ACTION_REACH_VIA_LOCATION -
Enter roundabout. Used by Valhalla and OSRM.
Declaration
Objective-C
NT_ROUTING_ACTION_ENTER_ROUNDABOUT -
Leave roundabout. Used by Valhalla and OSRM.
Declaration
Objective-C
NT_ROUTING_ACTION_LEAVE_ROUNDABOUT -
Continue along the roundabout. Only used by OSRM.
Declaration
Objective-C
NT_ROUTING_ACTION_STAY_ON_ROUNDABOUT -
Start at the end of the street. Currently used only by OSRM.
Declaration
Objective-C
NT_ROUTING_ACTION_START_AT_END_OF_STREET -
Enter street while moving against the allowed direction. Only used by OSRM.
Declaration
Objective-C
NT_ROUTING_ACTION_ENTER_AGAINST_ALLOWED_DIRECTION -
Leave the street while moving aginst the allowed direction. Only used by OSRM.
Declaration
Objective-C
NT_ROUTING_ACTION_LEAVE_AGAINST_ALLOWED_DIRECTION -
Go up. Only used by the SGRE.
Declaration
Objective-C
NT_ROUTING_ACTION_GO_UP -
Go down. Only used by SGRE.
Declaration
Objective-C
NT_ROUTING_ACTION_GO_DOWN -
Wait. Only used by SGRE.
Declaration
Objective-C
NT_ROUTING_ACTION_WAIT -
Enter ferry. Only used by Valhalla.
Declaration
Objective-C
NT_ROUTING_ACTION_ENTER_FERRY -
Leave ferry. Only used by Valhalla.
Declaration
Objective-C
NT_ROUTING_ACTION_LEAVE_FERRY
View on GitHub
NTRoutingAction Enumeration Reference