Modularization

VERSION 0.34.2
PUBLIC PREVIEW

The Navigation SDK for iOS is only available upon request. Contact us to get started.

The architecture of the TomTom SDKs is modular, meaning that each navigation component is independent of the others. As a result, components can easily be replaced with ones from other sources or left out if they are not needed. That makes it easier to change the standard SDK to address a specific use case. These replaceable components are referred to as engines.

Orchestrator

The Navigation module depends on engines to orchestrate a pipeline after each location update. Different engines are used during different parts of the navigation flow, as shown in the following image.

center

The orchestrator contains two main checks to determine if the calculation should continue or stop for a given location update. After matching a location to the map and providing location context, the pipeline stops if navigation:

  • is in free driving mode (there is no route)
  • has previously detected a deviation from the route

If none of the conditions are met, the flow proceeds with calculating route progress. If, after this, no deviation has been detected, it will continue to calculate guidance, check for arrival, and replan the route if necessary.

Engines

The orchestrator works with the following engines:

The LocationProvider is part of the Location module.

All of the other engines are in the Navigation module.

Customized engines can be set during the configuration of TomTomNavigation:

1let configuration = OnlineTomTomNavigationFactory.Configuration(
2 locationProvider: customLocationProvider,
3 routeReplanner: routeReplanner,
4 apiKey: "YOUR_API_KEY",
5 mapMatchingEngine: customMapMatchingEngine,
6 routeTrackingEngine: customRouteTrackingEngine,
7 guidanceEngine: customGuidanceEngine,
8 arrivalDetectionEngine: customArrivalDetectionEngine,
9 routeProgressEngine: customRouteProgressProviderEngine,
10 routeReplanningEngine: customRouteReplanningEngine
11)
12
13let navigation = try OnlineTomTomNavigationFactory.create(configuration: configuration)

The location provider is the only engine that can also be changed and customized after the creation of TomTomNavigation:

var navigation = navigation
navigation.locationProvider = locationProvider

Next steps

Since you have learned about our modular architecture, here are recommendations for the next steps: