GMSPanoramaLink.h 765 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // GMSPanoramaLink.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. #if __has_feature(modules)
  11. @import GoogleMapsBase;
  12. #else
  13. #import <GoogleMapsBase/GoogleMapsBase.h>
  14. #endif
  15. GMS_ASSUME_NONNULL_BEGIN
  16. /** Links from a GMSPanorama to neighboring panoramas. */
  17. @interface GMSPanoramaLink : NSObject
  18. /** Angle of the neighboring panorama, clockwise from north in degrees. */
  19. @property(nonatomic, assign) CGFloat heading;
  20. /**
  21. * Panorama ID for the neighboring panorama.
  22. * Do not store this persistenly, it changes in time.
  23. */
  24. @property(nonatomic, copy) NSString *panoramaID;
  25. @end
  26. GMS_ASSUME_NONNULL_END