react-native-google-maps-plus - v1.12.1
    Preparing search index...

    Interface RNGoogleMapsPlusStreetViewProps

    Native Google Maps Street View props.

    interface RNGoogleMapsPlusStreetViewProps {
        initialProps?: RNStreetViewInitialProps;
        onCameraChange?: (camera: RNStreetViewCamera) => void;
        onLocationError?: (error: RNLocationErrorCode) => void;
        onLocationUpdate?: (location: RNLocation) => void;
        onPanoramaChange?: (location: RNStreetViewPanoramaLocation) => void;
        onPanoramaError?: (error: RNMapErrorCode, msg: string) => void;
        onPanoramaPress?: (orientation: RNStreetViewOrientation) => void;
        onPanoramaReady?: (ready: boolean) => void;
        uiSettings?: RNStreetViewUiSettings;
    }

    Hierarchy

    • HybridViewProps
      • RNGoogleMapsPlusStreetViewProps
    Index

    Properties

    Initial panorama configuration. See RNStreetViewInitialProps.

    onCameraChange?: (camera: RNStreetViewCamera) => void

    Camera orientation changed. Fires continuously while the user rotates or tilts the view.

    onLocationError?: (error: RNLocationErrorCode) => void

    Location subsystem error.

    onLocationUpdate?: (location: RNLocation) => void

    Location update.

    onPanoramaChange?: (location: RNStreetViewPanoramaLocation) => void

    User or programmatic navigation moved to a new panorama. Provides full location info including panoramaId and adjacent links.

    onPanoramaError?: (error: RNMapErrorCode, msg: string) => void

    Native error. See RNMapErrorCode.

    onPanoramaPress?: (orientation: RNStreetViewOrientation) => void

    Tap on the panorama. Orientation indicates where on the sphere the user tapped.

    onPanoramaReady?: (ready: boolean) => void

    Panorama is initialized and ready to use.

    UI and gesture settings. See RNStreetViewUiSettings.