eurostat-map
Version:
Reusable library to quickly create and customise web maps showing Eurostat data directly retrieved from Eurostat database.
12 lines (10 loc) • 494 B
TypeScript
import { LegendConfig } from './LegendConfig'
/**
* Configuration for stripe composition map legends.
* Used to display a legend with colored rectangles representing different categories
* in stripe composition maps (regions divided into colored stripes showing composition).
*/
export interface StripeCompositionLegendConfig extends LegendConfig {
// Inherits all properties from LegendConfig
// No additional specific properties beyond the base legend configuration
}