This is the main class of the Street View feature in the Google Maps SDK for Android and
is the entry point for all methods related to Street View panoramas. You cannot instantiate a StreetViewPanorama
object directly, rather, you must obtain one from the #getStreetViewPanoramaAsync()
method on a StreetViewPanoramaFragment
or StreetViewPanoramaView
that you have added to your application.
Note: Similar to a View
object, a StreetViewPanorama
can only be read and modified from the main thread. Calling StreetViewPanorama
methods from another thread will result in an exception.
Developer Guide
To get started with the Google Maps SDK for Android, read the Google Maps SDK for Android developer guide.
Nested Class Summary
Public Method Summary
void | animateTo
( StreetViewPanoramaCamera
camera, long duration)
Changes the current camera position, orientation and zoom, to a given position
over a specified duration
|
StreetViewPanoramaLocation | getLocation
()
Returns the current location of the user and information regarding the current
panorama's adjacent panoramas
|
StreetViewPanoramaCamera | |
boolean | |
boolean | |
boolean | |
boolean | |
Point | |
StreetViewPanoramaOrientation | |
final void | setOnStreetViewPanoramaCameraChangeListener
( StreetViewPanorama.OnStreetViewPanoramaCameraChangeListener
listener)
Sets a callback that's invoked when the camera changes
|
final void | setOnStreetViewPanoramaChangeListener
( StreetViewPanorama.OnStreetViewPanoramaChangeListener
listener)
Sets a callback that's invoked when the panorama changes
|
final void | setOnStreetViewPanoramaClickListener
( StreetViewPanorama.OnStreetViewPanoramaClickListener
listener)
Sets a callback that's invoked when the panorama is tapped.
|
final void | setOnStreetViewPanoramaLongClickListener
( StreetViewPanorama.OnStreetViewPanoramaLongClickListener
listener)
Sets a callback that's invoked when the panorama is long-pressed.
|
void | setPanningGesturesEnabled
(boolean enablePanning)
Sets whether the user is able to use panning gestures
|
void | setPosition
( LatLng
position, StreetViewSource
source)
Sets the StreetViewPanorama to a given location
|
void | |
void | |
void | setPosition
( LatLng
position, int radius, StreetViewSource
source)
Sets the StreetViewPanorama to a given location
|
void | |
void | setStreetNamesEnabled
(boolean enableStreetNames)
Sets whether the user is able to see street names on panoramas
|
void | setUserNavigationEnabled
(boolean enableUserNavigation)
Sets whether the user is able to move to another panorama
|
void |
Inherited Method Summary
Public Methods
public void animateTo ( StreetViewPanoramaCamera camera, long duration)
Changes the current camera position, orientation and zoom, to a given position over a specified duration
Parameters
camera | The camera position to animate to. Must not be null
. |
---|---|
duration | The length of time, in milliseconds, it takes to transition from the current camera position to the given one |
public StreetViewPanoramaLocation getLocation ()
Returns the current location of the user and information regarding the current panorama's adjacent panoramas
Returns
- The current location of the user
public StreetViewPanoramaCamera getPanoramaCamera ()
Returns the current orientation and zoom
Returns
- The current camera
public boolean isPanningGesturesEnabled ()
Returns whether or not the panning gestures are enabled for the user
Returns
-
true
if panning gestures are enabled
public boolean isStreetNamesEnabled ()
Returns whether or not the street names appear on the panorama
Returns
-
true
if street names are shown
public boolean isUserNavigationEnabled ()
Returns whether or not the navigation is enabled for the user. This includes double tapping as well as using the navigation links
Returns
-
true
if navigation is enabled
public boolean isZoomGesturesEnabled ()
Returns whether or not the zoom gestures are enabled for the user
Returns
-
true
if zoom gestures are enabled
public Point orientationToPoint ( StreetViewPanoramaOrientation orientation)
Returns a screen location that corresponds to an orientation ( StreetViewPanoramaOrientation
).
The screen location is in screen pixels (not display pixels) relative to the top left
of the Street View panorama (not of the whole screen).
Parameters
Returns
- A
Point
representing the screen location in screen pixels. Returnsnull
if the orientation is unable to be projected on the screen (e.g. behind the user's field of view)
public StreetViewPanoramaOrientation pointToOrientation ( Point point)
Returns the orientation that corresponds to a screen location. The screen location is specified in screen pixels (not display pixels) relative to the top left of the Street View panorama (not the top left of the whole screen).
Parameters
Returns
- The
StreetViewPanoramaOrientation
corresponding to thepoint
on the screen, ornull
if the Street View panorama has not been initialized or if the given point is not a valid point on the screen
public final void setOnStreetViewPanoramaCameraChangeListener ( StreetViewPanorama.OnStreetViewPanoramaCameraChangeListener listener)
Sets a callback that's invoked when the camera changes
Parameters
null
.public final void setOnStreetViewPanoramaChangeListener ( StreetViewPanorama.OnStreetViewPanoramaChangeListener listener)
Sets a callback that's invoked when the panorama changes
Parameters
null
.public final void setOnStreetViewPanoramaClickListener ( StreetViewPanorama.OnStreetViewPanoramaClickListener listener)
Sets a callback that's invoked when the panorama is tapped.
Parameters
null
.public final void setOnStreetViewPanoramaLongClickListener ( StreetViewPanorama.OnStreetViewPanoramaLongClickListener listener)
Sets a callback that's invoked when the panorama is long-pressed.
Parameters
null
.public void setPanningGesturesEnabled (boolean enablePanning)
Sets whether the user is able to use panning gestures
Parameters
true
if users are allowed to use panning gesturespublic void setPosition ( LatLng position, StreetViewSource source)
Sets the StreetViewPanorama to a given location
Parameters
position | Latitude and longitude of the desired location. Must not be null
. |
---|---|
source | StreetViewSource specifies the source of panoramas to search. If source is null
, use the default. |
public void setPosition ( LatLng position)
Sets the StreetViewPanorama to a given location
Parameters
null
.public void setPosition ( LatLng position, int radius)
Sets the StreetViewPanorama to a given location
Parameters
position | Latitude and longitude of the desired location. Must not be null
. |
---|---|
radius | Radius, specified in meters, that defines the area in which to search for a panorama, centered on the given latitude and longitude |
public void setPosition ( LatLng position, int radius, StreetViewSource source)
Sets the StreetViewPanorama to a given location
Parameters
position | Latitude and longitude of the desired location. Must not be null
. |
---|---|
radius | Radius, specified in meters, that defines the area in which to search for a panorama, centered on the given latitude and longitude |
source | StreetViewSource specifies the source of panoramas to search. If source is null
, use the default. |
public void setPosition ( String panoId)
Sets the StreetViewPanorama to a given location
Parameters
null
.public void setStreetNamesEnabled (boolean enableStreetNames)
Sets whether the user is able to see street names on panoramas
Parameters
true
if users are able to see street names on panoramaspublic void setUserNavigationEnabled (boolean enableUserNavigation)
Sets whether the user is able to move to another panorama
Parameters
true
if users are allowed to move to another panoramapublic void setZoomGesturesEnabled (boolean enableZoom)
Sets whether the user is able to use zoom gestures
Parameters
true
if users are allowed to use zoom gestures