Public Transport Maneuvers
pedestrian
mode with the following actions: -
enter
: maneuver to enter a transit station -
leave
: maneuver to either depart the transit station or change public transport lines -
change
: maneuver to change public transport lines, only provided if thecombineChange
parameter value is set totrue
, otherwise theenter
andleave
pairs are used instead
For more information, see PublicTransportActionType, combineChange, TransportModeType.
Typical Logic and Order of Maneuvers
- A
depart
maneuver starts the route in pedestrian mode. - Pedestrian maneuvers follow until the first public transport section. For more information, see PrivateTransportActionType
- An
enter
maneuver starts the public transport section of the route. - Optionally, either
change
orenter-leave
maneuver pair follows to indicate transit line changes. - A
leave
maneuver ends the public transport section of the route. - A
continue
maneuver begins a segment in pedestrian mode. - Optionally, additional public transport and pedestrian segments follow.
- An
arrive
maneuver ends the route.
Maneuver Groups
Maneuver groups allow you to organize maneuvers into sections based on TransportModeType, to provide users with an itinerary summary and brief route instructions.
group
attribute switch in routeAttributes
. When requested, groups provide the following: - Identifiers of first and last maneuvers in the group
- Transport mode
- Type of public transport
- Summary, arrival, and wait descriptions in localized text, if available
Itinerary Summary using Maneuver Groups

maneuverGroup : [
<3 elem> 0: {
firstManeuver : "M1" lastManeuver : "M3"
mode : "pedestrian"
summaryDescription : "Walk to Reinickendorfer Straße."
arrivalDescription : "Arrive at Reinickendorfer Straße."
}
1: {
firstManeuver : "M4"
lastManeuver : "M5"
mode : "publicTransport"
publicTransportType: "railMetro"
summaryDescription : "Take the rail U6 towards Alt-Mariendorf."
arrivalDescription : "Get off at Tempelhof."
waitDescription : "3 minutes to connect."
}
2: {
firstManeuver : "M6"
lastManeuver : "M11"mode : "
pedestrian"summaryDescription : "Get off at Tempelhof and walk to your destination."
arrivalDescription : "Arrive at Hessenring."
}
]