Where is NavigationManager? In old version, I can use NavigationManager to simulate an route, like from SF to LA.
NavigationManager navigationManager = NavigationManager.getInstance();
navigationManager.addNewInstructionEventListener(new WeakReference<>(mNewInstruction));
navigationManager.addGpsSignalListener(new WeakReference<>(mGpsSignalListener));
navigationManager.addRerouteListener(new WeakReference<>(mRerouteListener));
navigationManager.addPositionListener(new WeakReference<>(mPositionListener));
navigationManager.addSafetySpotListener(new WeakReference<>(mSafetySpotListener));
navigationManager.addLaneInfoListener(new WeakReference<>(mLaneInfoListener));
navigationManager.addRealisticViewListener(new WeakReference<>(mRealisticViewListener));
//set the map where the navigation will be performed
navigationManager.setMap(mMap);
NavigationManager.Error error=navigationManager.simulate(mapRoute.getRoute(), 50);
Could you please tell me how can I implement simulation function with your latest here android sdk?
Thanks in advance.
According to the latest documentation, these APIs have not changed: NavigationManager API Reference.
The way you include the HERE SDK library in your project has changed, however. It is now delivered as an AAR file rather than as separate jar and native library files. Are you sure you are including the HERE SDK properly and it is present in your classpath? For further info on the new steps see this tutorial.