MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPFilter.h
Go to the documentation of this file.
1//
2// MPFilter.h
3// MapsIndoors
4//
5// Created by Daniel Nielsen on 06/11/2018.
6// Copyright © 2018 MapsPeople A/S. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "MPMapExtend.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
26@interface MPFilter : NSObject
27
31@property (nonatomic, strong) NSArray<NSString*>* locations;
32
36@property (nonatomic, strong) NSArray<NSString*>* types;
37
41@property (nonatomic, strong) NSArray<NSString*>* categories;
42
46@property (nonatomic, strong) MPMapExtend* bounds;
47
54@property (nonatomic, strong) NSArray<NSString*>* parents;
58@property (nonatomic) NSUInteger take;
59
63@property (nonatomic) NSUInteger skip;
64
73@property NSUInteger depth;
74
78@property (nonatomic, strong, nullable) NSNumber* floor;
79
80@end
81
82NS_ASSUME_NONNULL_END
Definition MPFilter.h:27
NSUInteger depth
Definition MPFilter.h:73
MPMapExtend * bounds
Definition MPFilter.h:46
NSArray< NSString * > * locations
Definition MPFilter.h:31
NSUInteger skip
Definition MPFilter.h:63
NSArray< NSString * > * parents
Definition MPFilter.h:54
NSArray< NSString * > * categories
Definition MPFilter.h:41
NSUInteger take
Definition MPFilter.h:58
NSNumber * floor
Definition MPFilter.h:78
NSArray< NSString * > * types
Definition MPFilter.h:36
Definition MPMapExtend.h:13