You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
703 B
30 lines
703 B
![]()
2 years ago
|
//
|
||
|
// GMSPlusCode.h
|
||
|
// Google Places SDK for iOS
|
||
|
//
|
||
|
// Copyright 2018 Google LLC
|
||
|
//
|
||
|
// 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
|
||
|
|
||
|
/**
|
||
|
* A class containing the Plus codes representation for a location.
|
||
|
* See https://plus.codes/ for more details.
|
||
|
*/
|
||
|
@interface GMSPlusCode : NSObject
|
||
|
|
||
|
/** Geo plus code, e.g. "8FVC9G8F+5W" */
|
||
|
@property(nonatomic, readonly, copy) NSString *globalCode;
|
||
|
|
||
|
/** Compound plus code, e.g. "9G8F+5W Zurich, Switzerland" */
|
||
|
@property(nullable, nonatomic, readonly, copy) NSString *compoundCode;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|