An immutable class that aggregates all user point of view parameters.
| class | StreetViewPanoramaOrientation.Builder | Builds Street View panorama orientations. | |
| public final float | bearing | Direction of the orientation, in degrees clockwise from north. |
| public final float | tilt | The angle, in degrees, of the orientation. |
|
StreetViewPanoramaOrientation(float tilt, float bearing)
Constructs a StreetViewPanoramaOrientation.
|
| 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 | |
| int |
hashCode()
|
| String |
toString()
|
| void |
writeToParcel(Parcel out, int
flags)
|
Direction of the orientation, in degrees clockwise from north.
The angle, in degrees, of the orientation. See
StreetViewPanoramaOrientation.Builder.tilt for details of restrictions on
the range of values.
Constructs a StreetViewPanoramaOrientation.
| tilt | The angle, in degrees, of the orientation. See
StreetViewPanoramaOrientation.Builder.tilt for details of
restrictions. |
|---|---|
| bearing | Direction of the orientation, in degrees clockwise from north. This value will be normalized to be within 0 degrees inclusive and 360 degrees exclusive. |
| IllegalArgumentException | if tilt is outside the range of -90 to 90 degrees inclusive. |
|---|
Creates a builder for a Street View panorama orientation.
Creates a builder for a Street View panorama orientation
| orientation | must not be null. |
|---|