MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPGeometryHelper.h
Go to the documentation of this file.
1//
2// MPGeometryHelper.h
3// MapsIndoors App
4//
5// Created by Daniel Nielsen on 17/04/2019.
6// Copyright © 2019 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "MPPolygonGeometry.h"
11#import "MPLocation.h"
12#define LATITUDE_MAX 90
13#define LATITUDE_MIN -90
14#define LONGITUDE_MAX 180
15#define LONGITUDE_MIN -180
16
17
18NS_ASSUME_NONNULL_BEGIN
19
20
24@interface MPGeometryHelper : NSObject
25
26
33+ (NSArray<MPPolygonGeometry*>* _Nullable) polygonsForLocation:(MPLocation*)location;
34
35@end
36
37NS_ASSUME_NONNULL_END
Definition MPGeometryHelper.h:25
Definition MPLocation.h:38
Definition MPPolygonGeometry.h:14