GMSPlusCode.h 703 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // GMSPlusCode.h
  3. // Google Places SDK for iOS
  4. //
  5. // Copyright 2018 Google LLC
  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. NS_ASSUME_NONNULL_BEGIN
  12. /**
  13. * A class containing the Plus codes representation for a location.
  14. * See https://plus.codes/ for more details.
  15. */
  16. @interface GMSPlusCode : NSObject
  17. /** Geo plus code, e.g. "8FVC9G8F+5W" */
  18. @property(nonatomic, readonly, copy) NSString *globalCode;
  19. /** Compound plus code, e.g. "9G8F+5W Zurich, Switzerland" */
  20. @property(nullable, nonatomic, readonly, copy) NSString *compoundCode;
  21. @end
  22. NS_ASSUME_NONNULL_END