MapRegionsEurope: {
    Albania: Country;
    Austria: Country;
    Belarus: Country;
    Belgium: Country;
    Bosnia and Herzegovina: Country;
    Bulgaria: Country;
    Croatia: Country;
    Cyprus: Country;
    Czech Republic: Country;
    Denmark: Country;
    Estonia: Country;
    Finland: Country;
    France: Country;
    Germany: Country;
    Greece: Country;
    Hungary: Country;
    Iceland: Country;
    Ireland: Country;
    Italy: Country;
    Kosovo: Country;
    Latvia: Country;
    Lithuania: Country;
    Luxembourg: Country;
    Macedonia: Country;
    Malta: Country;
    Moldova: Country;
    Montenegro: Country;
    Netherlands: Country;
    Norway: Country;
    Poland: Country;
    Portugal: Country;
    Republic of Serbia: Country;
    Romania: Country;
    Russia: Country;
    Slovakia: Country;
    Slovenia: Country;
    Spain: Country;
    Sweden: Country;
    Switzerland: Country;
    Turkey: Country;
    Ukraine: Country;
    United Kingdom: Country;
} = ...

List of MapRegions included in MapTypes.Europe.

Can be referenced like so:

const countries = MapRegions[ MapTypes.Europe ]

Each item is an enum-like object, that can be used with MapChart API to specify any region.

Example usage:

  • Invalidate selected region value.
 MapChart.invalidateRegionValues([
{ ...MapRegions[ MapTypes.Europe ].Finland, value: 0 }
])
  • List all region names (can be useful when developing a js application without intellisense).
 Object.keys( MapRegions[ MapTypes.Europe ] ).forEach( key => console.log( key ) )

Note, that the list includes all countries that are visible on the MapChart, some of which are outside the continent of Europe.

Type declaration