如何在OpenWeatherMap中将温度值切换为华氏温度

时间:2014-03-14 13:58:06

标签: openlayers weather-api openweathermap

我正在使用openweathermap服务来显示天气晴朗的地图。温度以摄氏度显示。但是我需要把它换成华氏温度。我找不到任何参数来做。

有人可以帮我处理这个问题吗?

期待您的回复。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。问题是我使用了OWM.OpenLayers.1.3.4.js而不是OWM.OpenLayers.1.3.6.js。要以华氏温度显示温度,我必须使用'units'参数。

var weather = new OpenLayers.Layer.Vector.OWMWeather("Current weather", {units : 'imperial'}); // imperial - Fahrenheit, metric - Celsius

希望它会有所帮助。

感谢。