UNPKG

eurostat-map

Version:

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

35 lines (34 loc) 614 B
/** * All supported map types */ export type MapType = | 'choropleth' | 'ch' | 'proportionalSymbol' | 'proportionalSymbols' | 'ps' | 'categorical' | 'ct' | 'bivariateChoropleth' | 'chbi' | 'trivariateChoropleth' | 'ternary' | 'chtri' | 'stripeComposition' | 'scomp' | 'stripe' | 'pieChart' | 'pie' | 'sparkline' | 'spark' | 'sparklines' | 'flow' | 'flowmap' | 'coxcomb' | 'polar' | 'alpha' | 'valueByAlpha' | 'mushroom' | 'waffle' | 'bar' | 'barComposition'