Manual integration of RNN and RNM

This commit is contained in:
John Lyon-Smith
2018-03-27 13:37:05 -07:00
parent bef47656f5
commit 5952d62335
173 changed files with 4288 additions and 4577 deletions

View 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;