Windy Community
    • Unread
    • Categories
    • Groups
    • Go to windy.com
    • Register
    • Login
    1. Home
    2. three60energy
    T
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Groups 0

    three60energy

    @three60energy

    0
    Reputation
    1
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    three60energy Unfollow Follow

    Latest posts made by three60energy

    • Overlay lines on Windy map

      Hello ,
      Is it possible to overlay lines and icons on Windy map?

      posted in Windy API v4
      T
      three60energy
    • RE: WPF WebBrowser control
      
          < head > 
              < meta
                  name="viewport"
                  content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
              / > 
              < script src="https://unpkg.com/leaflet@1.4.0/dist/leaflet.js" > < /script > 
              < script src="https://api.windy.com/assets/map-forecast/libBoot.js" > < /script > 
              < style > 
                  #windy {
                      width: 100%;
                      height: 100%; }
              < /style > 
          < /head > 
          < body > 
              < div id="windy" > < /div > 
              < !--< script src="script.js" > < /script > -- > 
      
              < script  > 
      
                  var options = {
                      // Required: API key
                      key: 'replacekey', // REPLACE WITH YOUR KEY !!!
      
                      // Put additional console output
                      verbose: true,
      
                      // Optional: Initial state of the map
                      lat: 3.5487142,
                      lon: 112.063852,
                      zoom: 10,
                  };
      
                  // Initialize Windy API
                  windyInit(options, windyAPI = >  {
                      const { map } = windyAPI;
                  });
      
             
              < /script > 
          < /body > 
      < /html > 
      
      posted in Developers
      T
      three60energy
    • WPF WebBrowser control

      Hello I'm trying to display a simple windy.com map on the WPF WebBrowser control
      The code is :

          <div></div>
      

      however i'm getting error script error

      posted in Developers
      T
      three60energy