@siim thank u for reply. I work in a weather company so we have forecast model data such as gfs, ifs ... so i wonder that could we change forecast model to our model data?
Posts made by shinnobi
-
RE: how to change forecast model windy apiposted in Windy API v4
-
how to change forecast model windy apiposted in Windy API v4
i am using windyapi for my website, i want to change forecast model like ifs or gms, gfs , could i do that ?
-
RE: how to change base map ?posted in Windy API v4
https://codepen.io/siim/pen/JBBepy
i found this. but when i zoom it doesn't change base map
-
RE: how to change base map ?posted in Windy API v4
windyInit( options, windyAPI => { // windyAPI is ready, and contain 'map', 'store', // 'picker' and other usefull stuff const { map } = windyAPI // .map is instance of Leaflet map L.tileLayer( "https://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/{z}/{y}/{x}", { attribution: "Trung tâm thông tin & dữ liệu KTTV", minZoom: 12, maxZoom: 18 } ).addTo(W.map); W.map.options.maxZoom = 18;p/s update code
i add it but it seems not working -
RE: how to change base map ?posted in Windy API v4
windyInit( options, windyAPI => {
// windyAPI is ready, and contain 'map', 'store',
// 'picker' and other usefull stuffconst { map } = windyAPI // .map is instance of Leaflet map L.tileLayer( "https://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/{z}/{y}/{x}", { attribution: "Trung tâm thông tin & dữ liệu KTTV", minZoom: 12, maxZoom: 18 } ).addTo(W.map); W.map.options.maxZoom = 18;i add this but it seem not working please help me
-
how to change base map ?posted in Windy API v4
I use this code in leaflet to change base map . But when i am using windy api v4 it can't change base map
L.tileLayer('https://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/{z}/{y}/{x}', {
attribution: 'Trung tâm thông tin & dữ liệu KTTV',
maxZoom: 16
}).addTo(map);How to do it with windy api v4