Manual integration of RNN and RNM
This commit is contained in:
34
mobile/ios/GoogleMaps.framework/Headers/GMSPanorama.h
Executable file
34
mobile/ios/GoogleMaps.framework/Headers/GMSPanorama.h
Executable file
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// GMSPanorama.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 <CoreLocation/CoreLocation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN;
|
||||
|
||||
@class GMSPanoramaLink;
|
||||
|
||||
/**
|
||||
* GMSPanorama represents metadata for a specific panorama on the Earth. This class is not
|
||||
* instantiable directly and is obtained via GMSPanoramaService or GMSPanoramaView.
|
||||
*/
|
||||
@interface GMSPanorama : NSObject
|
||||
|
||||
/** The precise location of this panorama. */
|
||||
@property(nonatomic, readonly) CLLocationCoordinate2D coordinate;
|
||||
|
||||
/** The ID of this panorama. Panoramas may change ID over time, so this should not be persisted */
|
||||
@property(nonatomic, copy, readonly) NSString *panoramaID;
|
||||
|
||||
/** An array of GMSPanoramaLink describing the neighboring panoramas. */
|
||||
@property(nonatomic, copy, readonly) NSArray<GMSPanoramaLink *> *links;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END;
|
||||
Reference in New Issue
Block a user