class NCLocationListener - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki

NCLocationListener provides a callback to be invoked when NCLocationManager class downloads the location from server or load it from the storage. The callback is invoked in the UI thread.

Referenced from: NCLocationManager.

@protocol NCLocationListener

- (void)onLocationLoaded:(nullable NCLocation *)location;

- (void)onDownloadProgress:(int32_t)received
                     total:(int32_t)total;

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

@end
⚠️ **GitHub.com Fallback** ⚠️