 
 这是世界空气质量指数项目在南亚雾霾严重期间向 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造成的。
要将瓦片叠加添加到谷歌地图,您只需添加以下代码:(您也可以参考这篇文章以获得完整的解释)
  
            <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

 
  