InterpolatedLocationListener (API Reference)
Package com.here.sdk.navigation
Interface InterpolatedLocationListener
public interface InterpolatedLocationListener
This interface should be implemented
in order to receive interpolated locations. The interpolated locations are only provided between
VisualNavigator.startRendering(com.here.sdk.mapview.MapViewBase) and VisualNavigator.stopRendering() calls and the application
is not running in the background.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonInterpolatedLocationUpdated(Location location) Called whenever a new interpolated location is calculated, usually several times per second.
-
Method Details
-
onInterpolatedLocationUpdated
Called whenever a new interpolated location is calculated, usually several times per second. The interpolated locations are only provided between
VisualNavigator.startRendering(com.here.sdk.mapview.MapViewBase)andVisualNavigator.stopRendering()calls and the application is not running in the background.- Parameters:
location-The interpolated location.
-