InterpolatedLocationDelegate
public protocol InterpolatedLocationDelegate : AnyObject
This protocol should be implemented
in order to receive interpolated locations. The interpolated locations are only provided between
VisualNavigator.startRendering(...) and VisualNavigator.stopRendering(...) calls and the application
is not running in the background.
-
Called whenever a new interpolated location is calculated, usually several times per second. The interpolated locations are only provided between
VisualNavigator.startRendering(...)andVisualNavigator.stopRendering(...)calls and the application is not running in the background.Declaration
Swift
func onInterpolatedLocationUpdated(location: Location)Parameters
locationThe interpolated location.