GMSPanorama
@interface GMSPanorama : NSObject
GMSPanorama
represents metadata for a specific panorama on the Earth. This class is not
instantiable directly and is obtained via GMSPanoramaService
or GMSPanoramaView
.
-
The precise location of this panorama.
Declaration
Swift
var coordinate: CLLocationCoordinate2D { get }
Objective-C
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
-
The ID of this panorama. Panoramas may change ID over time, so this should not be persisted
Declaration
Swift
var panoramaID: String { get }
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull panoramaID;
-
An array of
GMSPanoramaLink
describing the neighboring panoramas.Declaration
Swift
var links: [GMSPanoramaLink] { get }
Objective-C
@property (nonatomic, copy, readonly) NSArray<GMSPanoramaLink *> *_Nonnull links;