eurostat-map
Version:
Reusable library to quickly create and customise web maps showing Eurostat data directly retrieved from Eurostat database.
12 lines (10 loc) • 327 B
TypeScript
import type { MapConfig } from '../core/MapConfig'
/**
* Configuration for categorical map
*/
export interface CategoricalMapConfig extends MapConfig {
/** Category-to-color mapping */
classToFillStyle?: Record<string, string>
/** Fill style for regions with no data */
noDataFillStyle?: string
}