Class NCLocationEditListener - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki
NCLocationEditListener provides a callback to be invoked when the location will be changed or uploaded using NCLocationEditManager class. The callback is invoked in the UI thread.
Referenced from: NCLocationEditManager.
@protocol NCLocationEditListener
- (void)onLocationUploaded;
- (void)onUploadProgress:(int32_t)received
total:(int32_t)total;
- (void)onLocationEditError:(nullable NSError *)error;
@end