Manual integration of RNN and RNM
This commit is contained in:
41
mobile/ios/GoogleMaps.framework/Headers/GMSIndoorBuilding.h
Executable file
41
mobile/ios/GoogleMaps.framework/Headers/GMSIndoorBuilding.h
Executable 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;
|
||||
Reference in New Issue
Block a user