MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPPositionLiveUpdate.h
Go to the documentation of this file.
1//
2// MPPositionLiveUpdate.h
3// MapsIndoors
4//
5// Created by Daniel Nielsen on 02/12/2020.
6// Copyright © 2020 MapsPeople A/S. All rights reserved.
7//
8
9#import "MPLiveUpdate.h"
10#import <CoreLocation/CoreLocation.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
16
18@property (nonatomic, readonly) CLLocationCoordinate2D position;
20@property (nonatomic, readonly) int floor;
21
22@end
23
24NS_ASSUME_NONNULL_END
Model for a Live Update. Used in MPLiveDataManagerDelegate and MPLocation::getLiveUpdate().
Definition MPLiveUpdate.h:17
Model for live position information for a given Location.
Definition MPPositionLiveUpdate.h:16
int floor
Get the floor index.
Definition MPPositionLiveUpdate.h:20
CLLocationCoordinate2D position
Get the geographic coordinates.
Definition MPPositionLiveUpdate.h:18