react-native-google-maps-plus - v1.14.0
    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

    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. Android: false if the Maps SDK could not be initialized, e.g. Play Services missing or outdated. Fires again with true once the user has resolved it.

    UI and gesture settings. See RNStreetViewUiSettings.