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

    Type Alias RNPolyline

    Polyline definition.

    type RNPolyline = {
        color?: string;
        coordinates: RNLatLng[];
        geodesic?: boolean;
        id: string;
        lineCap?: RNLineCapType;
        lineJoin?: RNLineJoinType;
        pressable?: boolean;
        width?: number;
        zIndex?: number;
    }
    Index

    Properties

    color?: string

    Line color.

    coordinates: RNLatLng[]

    Polyline vertices.

    geodesic?: boolean

    Draws a geodesic path.

    id: string

    Unique polyline identifier.

    lineCap?: RNLineCapType

    Line cap style.

    lineJoin?: RNLineJoinType

    Line join style.

    pressable?: boolean

    Enables polyline press events.

    width?: number

    Line 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.