public class

StreetViewPanoramaOrientation

extends Object
implements Parcelable
java.lang.Object
   ↳ com.google.android.gms.maps.model.StreetViewPanoramaOrientation

Class Overview

An immutable class that aggregates all user point of view parameters.

Summary

Nested Classes
class StreetViewPanoramaOrientation.Builder Builds Street View panorama orientations. 
[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public final float bearing Direction of the orientation, in degrees clockwise from north.
public final float tilt The angle, in degrees, of the orientation.
Public Constructors
StreetViewPanoramaOrientation(float tilt, float bearing)
Constructs a StreetViewPanoramaOrientation.
Public Methods
static StreetViewPanoramaOrientation.Builder builder()
Creates a builder for a Street View panorama orientation.
static StreetViewPanoramaOrientation.Builder builder(StreetViewPanoramaOrientation orientation)
Creates a builder for a Street View panorama orientation
boolean equals(Object o)
int hashCode()
String toString()
void writeToParcel(Parcel out, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Fields

public final float bearing

Direction of the orientation, in degrees clockwise from north.

public final float tilt

The angle, in degrees, of the orientation. See tilt for details of restrictions on the range of values.

Public Constructors

public StreetViewPanoramaOrientation (float tilt, float bearing)

Constructs a StreetViewPanoramaOrientation.

Parameters
tilt float: The angle, in degrees, of the orientation. See tilt for details of restrictions.
bearing float: Direction of the orientation, in degrees clockwise from north. This value will be normalized to be within 0 degrees inclusive and 360 degrees exclusive.
Throws
IllegalArgumentException if tilt is outside the range of -90 to 90 degrees inclusive.

Public Methods

public static StreetViewPanoramaOrientation.Builder builder ()

Creates a builder for a Street View panorama orientation.

Returns
StreetViewPanoramaOrientation.Builder

public static StreetViewPanoramaOrientation.Builder builder (StreetViewPanoramaOrientation orientation)

Creates a builder for a Street View panorama orientation

Parameters
orientation StreetViewPanoramaOrientation
Returns
StreetViewPanoramaOrientation.Builder

public boolean equals (Object o)

Parameters
o Object
Returns
boolean

public int hashCode ()

Returns
int

public String toString ()

Returns
String

public void writeToParcel (Parcel out, int flags)

Parameters
out Parcel
flags int