MapRegionsWorld: {
    Afghanistan: Country;
    Akrotiri Sovereign Base Area: Country;
    Aland: Country;
    Albania: Country;
    Algeria: Country;
    American Samoa: Country;
    Andorra: Country;
    Angola: Country;
    Anguilla: Country;
    Antarctica: Country;
    Antigua and Barbuda: Country;
    Argentina: Country;
    Armenia: Country;
    Aruba: Country;
    Australia: Country;
    Austria: Country;
    Azerbaijan: Country;
    Bahrain: Country;
    Bangladesh: Country;
    Barbados: Country;
    Baykonur Cosmodrome: Country;
    Belarus: Country;
    Belgium: Country;
    Belize: Country;
    Benin: Country;
    Bermuda: Country;
    Bhutan: Country;
    Bolivia: Country;
    Bosnia and Herzegovina: Country;
    Botswana: Country;
    Brazil: Country;
    British Indian Ocean Territory: Country;
    British Virgin Islands: Country;
    Brunei: Country;
    Bulgaria: Country;
    Burkina Faso: Country;
    Burundi: Country;
    Cambodia: Country;
    Cameroon: Country;
    Canada: Country;
    Cape Verde: Country;
    Cayman Islands: Country;
    Central African Republic: Country;
    Chad: Country;
    Chile: Country;
    China: Country;
    Colombia: Country;
    Comoros: Country;
    Cook Islands: Country;
    Costa Rica: Country;
    Croatia: Country;
    Cuba: Country;
    Curaçao: Country;
    Cyprus: Country;
    Cyprus No Mans Area: Country;
    Czech Republic: Country;
    Democratic Republic of the Congo: Country;
    Denmark: Country;
    Dhekelia Sovereign Base Area: Country;
    Djibouti: Country;
    Dominica: Country;
    Dominican Republic: Country;
    East Timor: Country;
    Ecuador: Country;
    Egypt: Country;
    El Salvador: Country;
    Equatorial Guinea: Country;
    Eritrea: Country;
    Estonia: Country;
    Ethiopia: Country;
    Falkland Islands: Country;
    Faroe Islands: Country;
    Federated States of Micronesia: Country;
    Fiji: Country;
    Finland: Country;
    France: Country;
    French Guyana: Country;
    French Polynesia: Country;
    French Southern and Antarctic Lands: Country;
    Gabon: Country;
    Gambia: Country;
    Georgia: Country;
    Germany: Country;
    Ghana: Country;
    Greece: Country;
    Greenland: Country;
    Grenada: Country;
    Guam: Country;
    Guatemala: Country;
    Guernsey: Country;
    Guinea: Country;
    Guinea Bissau: Country;
    Guyana: Country;
    Haiti: Country;
    Heard Island and McDonald Islands: Country;
    Honduras: Country;
    Hong Kong S.A.R.: Country;
    Hungary: Country;
    Iceland: Country;
    India: Country;
    Indian Ocean Territories: Country;
    Indonesia: Country;
    Iran: Country;
    Iraq: Country;
    Ireland: Country;
    Isle of Man: Country;
    Israel: Country;
    Italy: Country;
    Ivory Coast: Country;
    Jamaica: Country;
    Japan: Country;
    Jersey: Country;
    Jordan: Country;
    Kazakhstan: Country;
    Kenya: Country;
    Kiribati: Country;
    Kosovo: Country;
    Kuwait: Country;
    Kyrgyzstan: Country;
    Laos: Country;
    Latvia: Country;
    Lebanon: Country;
    Lesotho: Country;
    Liberia: Country;
    Libya: Country;
    Liechtenstein: Country;
    Lithuania: Country;
    Luxembourg: Country;
    Macao S.A.R: Country;
    Macedonia: Country;
    Madagascar: Country;
    Malawi: Country;
    Malaysia: Country;
    Maldives: Country;
    Mali: Country;
    Malta: Country;
    Marshall Islands: Country;
    Mauritania: Country;
    Mauritius: Country;
    Mexico: Country;
    Moldova: Country;
    Mongolia: Country;
    Montenegro: Country;
    Montserrat: Country;
    Morocco: Country;
    Mozambique: Country;
    Myanmar: Country;
    Namibia: Country;
    Nepal: Country;
    Netherlands: Country;
    New Caledonia: Country;
    New Zealand: Country;
    Nicaragua: Country;
    Niger: Country;
    Nigeria: Country;
    Niue: Country;
    North Korea: Country;
    Northern Cyprus: Country;
    Northern Mariana Islands: Country;
    Norway: Country;
    Oman: Country;
    Pakistan: Country;
    Palau: Country;
    Palestine: Country;
    Panama: Country;
    Papua New Guinea: Country;
    Paraguay: Country;
    Peru: Country;
    Philippines: Country;
    Pitcairn Islands: Country;
    Poland: Country;
    Portugal: Country;
    Puerto Rico: Country;
    Qatar: Country;
    Republic of Congo: Country;
    Republic of Serbia: Country;
    Romania: Country;
    Russia: Country;
    Rwanda: Country;
    Saint Helena: Country;
    Saint Kitts and Nevis: Country;
    Saint Lucia: Country;
    Saint Martin: Country;
    Saint Pierre and Miquelon: Country;
    Saint Vincent and the Grenadines: Country;
    Samoa: Country;
    Sao Tome and Principe: Country;
    Saudi Arabia: Country;
    Senegal: Country;
    Seychelles: Country;
    Siachen Glacier: Country;
    Sierra Leone: Country;
    Singapore: Country;
    Slovakia: Country;
    Slovenia: Country;
    Solomon Islands: Country;
    Somalia: Country;
    South Africa: Country;
    South Georgia and South Sandwich Islands: Country;
    South Korea: Country;
    South Sudan: Country;
    Spain: Country;
    Spratly Islands: Country;
    Sri Lanka: Country;
    Sudan: Country;
    Suriname: Country;
    Swaziland: Country;
    Sweden: Country;
    Switzerland: Country;
    Syria: Country;
    Taiwan: Country;
    Tajikistan: Country;
    Thailand: Country;
    The Bahamas: Country;
    Togo: Country;
    Tonga: Country;
    Trinidad and Tobago: Country;
    Tunisia: Country;
    Turkey: Country;
    Turkmenistan: Country;
    Turks and Caicos Islands: Country;
    Tuvalu: Country;
    US Naval Base Guantanamo Bay: Country;
    Uganda: Country;
    Ukraine: Country;
    United Arab Emirates: Country;
    United Kingdom: Country;
    United Republic of Tanzania: Country;
    United States Minor Outlying Islands: Country;
    United States Virgin Islands: Country;
    United States of America: Country;
    Uruguay: Country;
    Uzbekistan: Country;
    Vanuatu: Country;
    Venezuela: Country;
    Vietnam: Country;
    Wallis and Futuna: Country;
    Western Sahara: Country;
    Yemen: Country;
    Zambia: Country;
    Zimbabwe: Country;
} = ...

List of MapRegions included in MapTypes.World.

Can be referenced like so:

const countries = MapRegions[ MapTypes.World ]

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.World ].Finland, value: 0 }
])
  • List all region names (can be useful when developing a js application without intellisense).
 Object.keys( MapRegions[ MapTypes.World ] ).forEach( key => console.log( key ) )

Type declaration