MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPLocationsObserver.h
Go to the documentation of this file.
1//
2// MPLocationsObserver.h
3// MapsIndoors
4//
5// Created by Daniel Nielsen on 27/10/2018.
6// Copyright © 2018 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
14@class MPLocation;
15@protocol MPLocationSource;
16
20@protocol MPLocationsObserver<NSObject>
21
22
29- (void)onLocationsUpdate:(NSArray<MPLocation *> *)locationUpdates source:(id<MPLocationSource>)source;
30
37- (void)onLocationsDelete:(NSArray<NSString *> *)locations source:(id<MPLocationSource>)source;
38
45- (void)onStatusChange:(MPLocationSourceStatus)status source:(id<MPLocationSource>)source;
46
47@end
48
49NS_ASSUME_NONNULL_END
MPLocationSourceStatus
Definition MPLocationSourceStatus.h:12
Definition MPLocation.h:38