Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 openweathermap 服务来显示当前天气的地图。温度以摄氏度显示。但我需要将其切换到华氏温度。而且我找不到任何参数来做到这一点。
有人可以帮我处理这个问题吗?
期待你的答复。
提前致谢。
我找到了解决方案。问题是我使用了 OWM.OpenLayers.1.3.4.js 而不是 OWM.OpenLayers.1.3.6.js。为了显示华氏温度,我不得不使用“单位”参数。
var weather = new OpenLayers.Layer.Vector.OWMWeather("Current weather", {units : 'imperial'}); // imperial - Fahrenheit, metric - Celsius
希望它会有所帮助。
谢谢。