Manual integration of RNN and RNM

This commit is contained in:
John Lyon-Smith
2018-03-27 13:37:05 -07:00
parent bef47656f5
commit 5952d62335
173 changed files with 4288 additions and 4577 deletions

View File

@@ -0,0 +1,41 @@
//
// GMSIndoorBuilding.h
// Google Maps SDK for iOS
//
// Copyright 2013 Google Inc.
//
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
// Service: https://developers.google.com/maps/terms
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN;
@class GMSIndoorLevel;
/**
* Describes a building which contains levels.
*/
@interface GMSIndoorBuilding : NSObject
/**
* Array of GMSIndoorLevel describing the levels which make up the building.
* The levels are in 'display order' from top to bottom.
*/
@property(nonatomic, strong, readonly) NSArray<GMSIndoorLevel *> *levels;
/**
* Index in the levels array of the default level.
*/
@property(nonatomic, assign, readonly) NSUInteger defaultLevelIndex;
/**
* If YES, the building is entirely underground and supports being hidden.
*/
@property(nonatomic, assign, readonly, getter=isUnderground) BOOL underground;
@end
NS_ASSUME_NONNULL_END;