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

    Type Alias RNMarker

    Marker definition.

    On iOS, some default animations are suppressed for parity with Android.

    type RNMarker = {
        anchor?: RNPosition;
        coordinate: RNLatLng;
        draggable?: boolean;
        flat?: boolean;
        iconSvg?: RNMarkerSvg;
        id: string;
        infoWindowAnchor?: RNPosition;
        infoWindowIconSvg?: RNMarkerSvg;
        opacity?: number;
        rotation?: number;
        snippet?: string;
        title?: string;
        zIndex?: number;
    }
    Index

    Properties

    anchor?: RNPosition

    Anchor point relative to the marker icon. (0,0) = top-left, (1,1) = bottom-right.

    coordinate: RNLatLng

    Marker coordinate.

    draggable?: boolean

    Enables marker dragging.

    flat?: boolean

    Draws the marker flat against the map.

    iconSvg?: RNMarkerSvg

    Marker icon rendered from an SVG string.

    id: string

    Unique marker identifier.

    infoWindowAnchor?: RNPosition

    Info window anchor relative to the marker. (0,0) = top-left, (1,1) = bottom-right.

    infoWindowIconSvg?: RNMarkerSvg

    Info window content rendered from an SVG string.

    opacity?: number

    Icon opacity in the range [0, 1].

    rotation?: number

    Rotation angle in degrees.

    snippet?: string

    Marker snippet / subtitle.

    title?: string

    Marker title.

    zIndex?: number

    Z-index used for rendering order.