Page Summary
-
StreetViewPanorama.OnStreetViewPanoramaLongClickListeneris a callback interface for when the user long presses on the panorama. -
The
onStreetViewPanoramaLongClickmethod is called when a user performs a long-press gesture on the panorama, provided no overlays handled the gesture. -
Listeners for this interface, including the
onStreetViewPanoramaLongClickmethod, are always invoked on the main thread. -
The
onStreetViewPanoramaLongClickmethod receivesStreetViewPanoramaOrientationas a parameter, representing the tilt and bearing values of the long-pressed point.
Callback interface for when the user long presses on the panorama.
Listeners will be invoked on the main thread
Public Method Summary
| abstract void |
onStreetViewPanoramaLongClick(StreetViewPanoramaOrientation
orientation)
Called when the user makes a long-press gesture on the panorama, but only if
none of the overlays of the panorama handled the gesture.
|
Public Methods
public abstract void onStreetViewPanoramaLongClick (StreetViewPanoramaOrientation orientation)
Called when the user makes a long-press gesture on the panorama, but only if none of the overlays of the panorama handled the gesture. Implementations of this method are always invoked on the main thread.
Parameters
| orientation | The tilt and bearing values corresponding to the point on the screen where the user long-pressed. These values have an absolute value within a specific panorama, and are independent of the current orientation of the camera. |
|---|