UNPKG

eurostat-map

Version:

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

22 lines (16 loc) 457 B
import type { MapInstance } from '../core/MapInstance' /** * Categorical map type. */ export interface CategoricalMap extends MapInstance { classToFillStyle(): any classToFillStyle(v: any): this classToText(): any classToText(v: any): this noDataFillStyle(): string noDataFillStyle(v: string): this tooltipText(): any tooltipText(v: any): this classifier(): any classifier(v: any): this }