 
 이는 남아시아에 안개가 심한 기간 동안 ASMC - ASEAN 전문 기상 센터( asmc.asean.org )에 대한 세계 대기 질 지수 프로젝트의 작은 기여입니다.
We have updated our tile map webservice based on the PM10 raw concentration color scale defined on asmc-haze-air-quality page. This service can be used to overlay the current PM10 concentration on any existing map (eg google map - see example below).
The color codes on this map correspond to the ASEAN PM10 color scale.
LEGEND:
| (ug/m3) Air Quality Description | Good | Moderate | Unhealhty | Very Unhealhty | Hazardous | Data not available |  | 
Note: For all countries except Malaysia and Brunei, the data is based on the 24-hour PM10 average. For Malaysia and Brunei, the data is based on the 24 hours[1] PSI average which is most likely caused by PM10 in this period of haze.
Google 지도에 타일 오버레이를 추가하려면 다음 코드를 추가해야 합니다. (전체 설명 은 이 문서를 참조할 수도 있습니다.)
  
            <script>  
                  var  waqiMapOverlay  =  new  google.maps.ImageMapType({  
                        getTileUrl:  function(coord,  zoom)  {  
                              return  'https://tiles.waqi.info/tiles/asean-pm10/'  +  zoom  +  "/"  +  coord.x  +  "/"  +  coord.y  +  ".png";  
                        },  
                        name:  "Asean  PM10  concentration",  
                  });  
  
                  googleMap.overlayMapTypes.insertAt(0,  waqiMapOverlay);  
            </script>  
      [1] raw (unaveraged) hourly data is not publically available for Malaysia

 
  