java.lang.Object |
↳ |
com.google.android.gms.maps.model.StreetViewPanoramaCamera |
Class Overview
An immutable class that aggregates all camera position parameters.
Summary
Nested Classes |
class |
StreetViewPanoramaCamera.Builder |
Builds panorama cameras. |
[Expand]
Inherited Constants |
From interface
android.os.Parcelable
int |
CONTENTS_FILE_DESCRIPTOR |
|
int |
PARCELABLE_WRITE_RETURN_VALUE |
|
|
Fields |
public
final
float |
bearing |
Direction that the camera is pointing in, in degrees clockwise from north. |
public
final
float |
tilt |
The angle, in degrees, of the camera from the horizon of the panorama. |
public
final
float |
zoom |
Zoom level near the centre of the screen. |
Public Constructors |
|
StreetViewPanoramaCamera(float zoom, float tilt, float bearing)
Constructs a StreetViewPanoramaCamera.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
android.os.Parcelable
abstract
int
|
describeContents()
|
abstract
void
|
writeToParcel(Parcel arg0, int arg1)
|
|
Fields
public
final
float
bearing
Direction that the camera is pointing in, in degrees clockwise from north.
public
final
float
tilt
The angle, in degrees, of the camera from the horizon of the panorama. See
tilt
for details of restrictions on the range of values.
public
final
float
zoom
Zoom level near the centre of the screen. See zoom
for the definition of the
camera's zoom level.
Public Constructors
public
StreetViewPanoramaCamera
(float zoom, float tilt, float bearing)
Constructs a StreetViewPanoramaCamera.
Parameters |
zoom |
float :
Zoom level of the camera to the panorama. See
zoom
for details of restrictions. |
tilt |
float :
The camera angle, in degrees, from the horizon of the panorama. See
tilt
for details of restrictions. |
bearing |
float :
Direction that the camera is pointing in, 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
Creates a builder for a Street View panorama camera.
Creates a builder for a Street View panorama camera
Parameters |
camera |
StreetViewPanoramaCamera
|
public
boolean
equals
(Object o)
Returns the particular camera's tilt and bearing as an orientation
public
String
toString
()
public
void
writeToParcel
(Parcel out, int flags)
Parameters |
out |
Parcel
|
flags |
int
|