 
 這是世界空氣品質指數計畫在南亞霧霾嚴重期間向 ASMC - 東協專業氣像中心 ( 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 |  | 
註:對於除馬來西亞和汶萊以外的所有國家/地區,數據均基於 24 小時 PM 10平均值。對於馬來西亞和汶萊,數據基於 24 小時[1] PSI 平均值,這很可能是由霧霾期間的 PM 10造成的。
要將瓦片疊加添加到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

 
  