MapsIndoors iOS SDK V3
Loading...
Searching...
No Matches
MPFloor.h
Go to the documentation of this file.
1//
2// MPFloor.h
3// MapsIndoors SDK for iOS
4//
5// Created by Daniel Nielsen on 1/13/14.
6// Copyright (c) 2014 MapsPeople A/S. All rights reserved.
7//
8
9#import "MPJSONModel.h"
10
11@class GMSTileLayer;
12
16@interface MPFloor : MPJSONModel
17
19@property (nonatomic, strong, nonnull, readonly) NSString* floorId;
20
21@property (nonatomic, strong, nullable) GMSTileLayer<Optional>* tileLayer DEPRECATED_ATTRIBUTE;
25@property (nonatomic, strong, nullable) NSString<Optional>* style;
27@property (nonatomic, strong, nullable) NSNumber<Optional>* zIndex;
28@property (nonatomic, strong, nullable) NSString<Optional>* buildingId;
30@property (nonatomic, strong, nullable) NSArray<NSArray*>* bounds;
32@property (nonatomic, strong, nullable) NSString* name;
33
35@property (nonatomic, strong, nullable) NSArray<NSString *><Optional>* aliases;
36
37@end
Definition MPFloor.h:17
GMSTileLayer< Optional > * tileLayer
Definition MPFloor.h:21
NSString< Optional > * style
Definition MPFloor.h:25
NSString * name
Floor name.
Definition MPFloor.h:32
NSNumber< Optional > * zIndex
Floor index.
Definition MPFloor.h:27
NSArray< NSString * >< Optional > * aliases
Floor aliases.
Definition MPFloor.h:35
NSString< Optional > * buildingId
Definition MPFloor.h:28
NSString * floorId
Floor id.
Definition MPFloor.h:19
NSArray< NSArray * > * bounds
Floor bounds.
Definition MPFloor.h:30