







Translated from English by gtranslate.io
This is an old revision of the document!
Since version 3.2.0, Locus offer possibility to implement own add-on, that will supply complete routing for Locus navigation. Method is based on Service and communication with Locus is thanks to AIDL interface.
It sounds complicated, but best is to check existing Locus add-on for Offline navigation.
To add your own routing service to Locus, you need to
<service android:name=".MyRoutingService" android:label="My routing" > <intent-filter> <action android:name="locus.api.android. ACTION_COMPUTE_TRACK_PROVIDER"/> </intent-filter> </service>
RoutingService allows direct integration into Locus. Thanks to AIDL, for users won't be even visible, that they use independent add-on.
What is possible