We started building our mobile app a while ago when the premium SDK was still maintained. Now Here decided to deprecate that SDK and we must switch to another one. However we were using the Turn-By-Turn navigation where we were getting the ETA information real time using the NavigationManager GetETA(). This way we could get the ETA updated along the route without having to use multiple API requests (which would be insanely cost consuming). How can I achieve that with the Explore SDK ? I see the following note on the Explore SDK documentation: https://developer.here.com/documentation/android-sdk-explore/4.13.5.0/dev_guide/topics/routing.html
Note Tip: If a driver is moving, the bearing value can help to improve the route calculation: startWaypoint.headingInDegrees = location.bearingInDegrees;.
Can someone confirm that I can get the ETA updated real time without calling multiple times the Get Route API ?
Thanks in advance for helping.