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

    Type Alias RNPolygon

    Polygon definition.

    type RNPolygon = {
        coordinates: RNLatLng[];
        fillColor?: string;
        geodesic?: boolean;
        holes?: RNPolygonHole[];
        id: string;
        pressable?: boolean;
        strokeColor?: string;
        strokeWidth?: number;
        zIndex?: number;
    }
    Index

    Properties

    coordinates: RNLatLng[]

    Polygon vertices.

    fillColor?: string

    Fill color.

    geodesic?: boolean

    Draws geodesic edges.

    holes?: RNPolygonHole[]

    Polygon holes.

    id: string

    Unique polygon identifier.

    pressable?: boolean

    Enables polygon press events.

    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.