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

    Type Alias RNMapUiSettings

    UI and gesture settings.

    type RNMapUiSettings = {
        allGesturesEnabled?: boolean;
        compassEnabled?: boolean;
        consumeOnMarkerPress?: boolean;
        consumeOnMyLocationButtonPress?: boolean;
        indoorLevelPickerEnabled?: boolean;
        mapToolbarEnabled?: boolean;
        myLocationButtonEnabled?: boolean;
        rotateEnabled?: boolean;
        scrollDuringRotateOrZoomEnabled?: boolean;
        scrollEnabled?: boolean;
        tiltEnabled?: boolean;
        zoomControlsEnabled?: boolean;
        zoomGesturesEnabled?: boolean;
    }
    Index

    Properties

    allGesturesEnabled?: boolean

    Enables or disables all gestures.

    compassEnabled?: boolean

    Shows the compass.

    consumeOnMarkerPress?: boolean

    Consumes the press event.

    When enabled:

    • Native map UI does NOT execute its default behavior.
    • Only the JS callback is triggered.

    When disabled:

    • JS callback is triggered.
    • Native default behavior runs (e.g. camera move, info window, selection).
    consumeOnMyLocationButtonPress?: boolean

    Consumes the My-Location-button press event.

    When enabled:

    • Native map does NOT perform its default camera move.
    • Only the JS callback is triggered.

    When disabled:

    • JS callback is triggered.
    • Native behavior runs (camera animates to user location).
    indoorLevelPickerEnabled?: boolean

    Enables the indoor level picker.

    mapToolbarEnabled?: boolean

    Enables the map toolbar.

    Android: supported. iOS: not supported.

    myLocationButtonEnabled?: boolean

    Enables the "My Location" button.

    rotateEnabled?: boolean

    Enables rotation gestures.

    scrollDuringRotateOrZoomEnabled?: boolean

    Enables scroll during rotate/zoom gestures.

    scrollEnabled?: boolean

    Enables scroll gestures.

    tiltEnabled?: boolean

    Enables tilt gestures.

    zoomControlsEnabled?: boolean

    Shows built-in zoom controls.

    Android: supported. iOS: not supported.

    zoomGesturesEnabled?: boolean

    Enables pinch zoom gestures.