THIS SDK ISDEPRECATED.

We rolled out a new and better SDK for you.

Maneuver list

Serve your users with a list of maneuvers (driving instructions), providing turn by turn information for every maneuver. You can get the maneuvers in different languages to internationalize your app.

Sample use case: You are planning a journey and you want to have the list of maneuvers so you can look them up en route.

In the following example you can see an implementation of a maneuver list that is available in English, German, Spanish, and French.

1let query = TTRouteQueryBuilder.create(withDest: TTCoordinate.BERLIN(), andOrig: TTCoordinate.AMSTERDAM())
2 .withInstructionsType(.text)
3 .withLang(language)
4 .build()
5routePlanner.plan(with: query)
TTRouteQuery *query = [[[[TTRouteQueryBuilder createWithDest:[TTCoordinate BERLIN] andOrig:[TTCoordinate AMSTERDAM]] withInstructionsType:TTOptionInstructionsTypeText] withLang:language] build]
[self.routePlanner planRouteWithQuery:query];

image

Maneuver list in English

image

Maneuver list in Spanish