PanoramaLongClickListener typedef

PanoramaLongClickListener = void Function(StreetViewPanoramaOrientation orientation, Point<num> point)

Callback that receiving last long tap event on current panorama. Web not support

The callback receive StreetViewPanoramaOrientation while the panorama of the platform street view was long tapped.

This is set at FlutterGoogleStreetView.onPanoramaClickListener. orientation, The tilt and bearing values corresponding to the point on the screen where the user tapped. These values have an absolute value within a specific panorama, and are independent of the current orientation of the camera. point, The point on the screen where the user tapped.

Implementation

typedef PanoramaLongClickListener = void Function(
    StreetViewPanoramaOrientation orientation, Point point);