Variable MapRegionsSouthEastAsiaConst

MapRegionsSouthEastAsia: {
    Australia: Country;
    Bangladesh: Country;
    Brunei: Country;
    Cambodia: Country;
    China: Country;
    East Timor: Country;
    Hong Kong S.A.R.: Country;
    India: Country;
    Indonesia: Country;
    Laos: Country;
    Malaysia: Country;
    Myanmar: Country;
    Papua New Guinea: Country;
    Philippines: Country;
    Singapore: Country;
    Taiwan: Country;
    Thailand: Country;
    Vietnam: Country;
} = ...

List of MapRegions included in MapTypes.SouthEastAsia.

Can be referenced like so:

const countries = MapRegions[ MapTypes.SouthEastAsia ]

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

Note, that the list includes all countries that are visible on the MapChart, some of which are outside the region of Southeast Asia.

Type declaration