UNPKG

eurostat-map

Version:

Reusable library to quickly create and customise web maps showing Eurostat data directly retrieved from Eurostat database.

10 lines (8 loc) 289 B
import type { MapInstance } from '../../core/MapInstance' /** * Value-by-alpha choropleth map type. */ export interface ValueByAlphaMap extends MapInstance { opacityScale(): ((value: number) => number) | null opacityScale(v: ((value: number) => number) | null): this }