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

    Type Alias RNCircle

    Circle definition.

    type RNCircle = {
        center: RNLatLng;
        fillColor?: string;
        id: string;
        pressable?: boolean;
        radius: number;
        strokeColor?: string;
        strokeWidth?: number;
        zIndex?: number;
    }
    Index

    Properties

    center: RNLatLng

    Circle center.

    fillColor?: string

    Fill color.

    id: string

    Unique circle identifier.

    pressable?: boolean

    Enables circle press events.

    radius: number

    Radius in meters.

    strokeColor?: string

    Stroke color.

    strokeWidth?: number

    Stroke width in logical units.

    iOS: points (pt) Android: density-independent pixels (dp)

    Converted internally to physical pixels.

    zIndex?: number

    Z-index used for rendering order.