Windy Community
    • Unread
    • Categories
    • Groups
    • Go to windy.com
    • Register
    • Login
    1. Home
    2. shinnobi
    3. Posts
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 7
    • Best 1
    • Controversial 0
    • Groups 0

    Posts made by shinnobi

    • RE: how to change forecast model windy api

      @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?

      posted in Windy API v4
      S
      shinnobi
    • how to change forecast model windy api

      i am using windyapi for my website, i want to change forecast model like ifs or gms, gfs , could i do that ?

      posted in Windy API v4
      S
      shinnobi
    • RE: how to change base map ?

      thanks you very much :D

      posted in Windy API v4
      S
      shinnobi
    • RE: how to change base map ?

      https://codepen.io/siim/pen/JBBepy

      i found this. but when i zoom it doesn't change base map

      posted in Windy API v4
      S
      shinnobi
    • RE: how to change base map ?
      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

      posted in Windy API v4
      S
      shinnobi
    • RE: how to change base map ?

      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;
      

      i add this but it seem not working please help me

      posted in Windy API v4
      S
      shinnobi
    • how to change base map ?

      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

      posted in Windy API v4
      S
      shinnobi