Class NCPositionListener - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki

NCPositionListener provides a callback to be invoked when NCNavigationManager updates the position of the Android device. The callback is invoked in the UI thread.

Referenced from: NCNavigationManager, NCRouteManager.

@protocol NCPositionListener

- (void)onPositionUpdated:(nonnull NCPosition *)position;

- (void)onPositionError:(nullable NSError *)error;

@end