Manual integration of RNN and RNM
This commit is contained in:
30
mobile/ios/GoogleMaps.framework/Headers/GMSPanoramaLink.h
Executable file
30
mobile/ios/GoogleMaps.framework/Headers/GMSPanoramaLink.h
Executable file
@@ -0,0 +1,30 @@
|
||||
//
|
||||
// GMSPanoramaLink.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 <CoreGraphics/CoreGraphics.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN;
|
||||
|
||||
/** Links from a GMSPanorama to neighboring panoramas. */
|
||||
@interface GMSPanoramaLink : NSObject
|
||||
|
||||
/** Angle of the neighboring panorama, clockwise from north in degrees. */
|
||||
@property(nonatomic, assign) CGFloat heading;
|
||||
|
||||
/**
|
||||
* Panorama ID for the neighboring panorama.
|
||||
* Do not store this persistenly, it changes in time.
|
||||
*/
|
||||
@property(nonatomic, copy) NSString *panoramaID;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END;
|
||||
Reference in New Issue
Block a user