GMSIndoorLevel.h 942 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // GMSIndoorLevel.h
  3. // Google Maps SDK for iOS
  4. //
  5. // Copyright 2013 Google Inc.
  6. //
  7. // Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
  8. // Service: https://developers.google.com/maps/terms
  9. //
  10. #import <Foundation/Foundation.h>
  11. #if __has_feature(modules)
  12. @import GoogleMapsBase;
  13. #else
  14. #import <GoogleMapsBase/GoogleMapsBase.h>
  15. #endif
  16. GMS_ASSUME_NONNULL_BEGIN
  17. /**
  18. * Describes a single level in a building.
  19. * Multiple buildings can share a level - in this case the level instances will
  20. * compare as equal, even though the level numbers/names may be different.
  21. */
  22. @interface GMSIndoorLevel : NSObject
  23. /** Localized display name for the level, e.g. "Ground floor". */
  24. @property(nonatomic, copy, readonly) NSString *GMS_NULLABLE_PTR name;
  25. /** Localized short display name for the level, e.g. "1". */
  26. @property(nonatomic, copy, readonly) NSString *GMS_NULLABLE_PTR shortName;
  27. @end
  28. GMS_ASSUME_NONNULL_END