https://www.windy.com/
基于windyApi 开发自己的气象项目
文档:
widnyAPI 主要属性
https://api.windy.com/map-forecast/docs
widny 参数 以及数据
https://api.windy.com/map-forecast/examples/parameters
属性值
https://api.windy.com/point-forecast/docs#parameters
store
store.get() // 获取当前key 的 属性值
store.getAllowed () 获取所有属性值 // https://api.windy.com/point-forecast/docs#parameters
// 并设置初始图层值 // surface
const changeOverlayItem = value => {
setCurrentLayer(value);
const { store } = window.windyAPI;
store.set("overlay", value);
let list = store.get("availLevels");
setAvailLevels(list);
// 获取单位list
};
// 改变图层层级
const changeOverLevelItem = i => {
setCurrentLevel(i);
const { store } = window.windyAPI;
store.set("level", i);
};
图层温度 没加上去 有会的大佬指导一下 多谢