-1

我有一个 google maps api,我也包含了天气 api。

<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3&sensor=false&libraries=weather">
    </script>
// Assigning map to its variable
    map = new google.maps.Map(document.getElementById("map-canvas"),
        mapOptions);

    var weatherLayer = new google.maps.weather.WeatherLayer({
        temperatureUnits: google.maps.weather.TemperatureUnit.FAHRENHEIT
    });
    weatherLayer.setMap(map);

现在我只需要在单击有关某个地点的标记时显示风速。但我找不到任何显示风速的方法。

4

1 回答 1

3

Google Maps Javascript API v3 中没有“天气”库或天气 API。曾经有一个天气图层但根据archive.org 上的文档,从 2015 年 3 月 18 日起,它在 2014 年被弃用,并于去年 6 月关闭:

Weather 和 Cloud 图层允许您将天气预报和云图像添加到地图中。

注意:Weather 和 Cloud 图层已于 2014 年 6 月 4 日弃用。它们将于 2015 年 6 月 4 日停止运行。

于 2016-02-17T07:19:04.230 回答