Highlight options controlling color and opacity of highlighted features.

interface MapViewHighlightOptionsLike {
    color?: string | number[];
    fillOpacity?: number;
    haloColor?: string | number[];
    haloOpacity?: number;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

color?: string | number[]
fillOpacity?: number
haloColor?: string | number[]
haloOpacity?: number