Package 

Class StreetViewPanoramaViewKt

    • Method Summary

      Modifier and Type Method Description
      final static StreetViewPanorama awaitStreetViewPanorama(StreetViewPanoramaView $self) A suspending function that provides an instance of a StreetViewPanorama from this StreetViewPanoramaView.
      final static Flow<StreetViewPanoramaCamera> cameraChangeEvents(StreetViewPanorama $self) Returns a flow that emits when the street view panorama camera changes.
      final static Flow<StreetViewPanoramaLocation> changeEvents(StreetViewPanorama $self) Returns a flow that emits when the street view panorama loads a new panorama.
      final static Flow<StreetViewPanoramaOrientation> clickEvents(StreetViewPanorama $self) Returns a flow that emits when the street view panorama is clicked.
      final static Flow<StreetViewPanoramaOrientation> longClickEvents(StreetViewPanorama $self) Returns a flow that emits when the street view panorama is long clicked.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • awaitStreetViewPanorama

         final static StreetViewPanorama awaitStreetViewPanorama(StreetViewPanoramaView $self)

        A suspending function that provides an instance of a StreetViewPanorama from this StreetViewPanoramaView. This is an alternative to using StreetViewPanoramaView.getStreetViewPanoramaAsync by using coroutines to obtain a StreetViewPanorama.

      • cameraChangeEvents

         final static Flow<StreetViewPanoramaCamera> cameraChangeEvents(StreetViewPanorama $self)

        Returns a flow that emits when the street view panorama camera changes. Using this to observe panorama camera change events will override an existing listener (if any) to StreetViewPanorama.setOnStreetViewPanoramaCameraChangeListener.

      • changeEvents

         final static Flow<StreetViewPanoramaLocation> changeEvents(StreetViewPanorama $self)

        Returns a flow that emits when the street view panorama loads a new panorama. Using this to observe panorama load change events will override an existing listener (if any) to StreetViewPanorama.setOnStreetViewPanoramaChangeListener.

      • clickEvents

         final static Flow<StreetViewPanoramaOrientation> clickEvents(StreetViewPanorama $self)

        Returns a flow that emits when the street view panorama is clicked. Using this to observe panorama click events will override an existing listener (if any) to StreetViewPanorama.setOnStreetViewPanoramaClickListener.

      • longClickEvents

         final static Flow<StreetViewPanoramaOrientation> longClickEvents(StreetViewPanorama $self)

        Returns a flow that emits when the street view panorama is long clicked. Using this to observe panorama long click events will override an existing listener (if any) to StreetViewPanorama.setOnStreetViewPanoramaLongClickListener.