MapRegionsAsia: {
    Afghanistan: Country;
    Armenia: Country;
    Australia: Country;
    Azerbaijan: Country;
    Bahrain: Country;
    Bangladesh: Country;
    Bhutan: Country;
    Brunei: Country;
    Cambodia: Country;
    China: Country;
    Georgia: Country;
    India: Country;
    Indonesia: Country;
    Iran: Country;
    Iraq: Country;
    Israel: Country;
    Japan: Country;
    Jordan: Country;
    Kazakhstan: Country;
    Kuwait: Country;
    Kyrgyzstan: Country;
    Laos: Country;
    Lebanon: Country;
    Malaysia: Country;
    Maldives: Country;
    Mongolia: Country;
    Myanmar: Country;
    Nepal: Country;
    North Korea: Country;
    Oman: Country;
    Pakistan: Country;
    Palestine: Country;
    Papua New Guinea: Country;
    Philippines: Country;
    Qatar: Country;
    Russia: Country;
    Saudi Arabia: Country;
    Singapore: Country;
    South Korea: Country;
    Sri Lanka: Country;
    Syria: Country;
    Taiwan: Country;
    Tajikistan: Country;
    Thailand: Country;
    Turkey: Country;
    Turkmenistan: Country;
    United Arab Emirates: Country;
    Uzbekistan: Country;
    Vietnam: Country;
    Yemen: Country;
} = ...

List of MapRegions included in MapTypes.Asia.

Can be referenced like so:

const countries = MapRegions[ MapTypes.Asia ]

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

Type declaration