Autoplay radar widget
-
WIndy you are missing the boat here not implementing or figuring a way to setup autoplay on the radar with looping updates when new data arrives. I've seen this requested by a lot of people and frankly would be a big reason to upgrade to premium (Which I Have) tons of hotels/ kiosks/ and any Dak board users would love to have this setup on their launch screen for the day. You figured a way to put the forecasting on it which is nice and all but the autoplay feature has been requested for some time now please as a paying customer look into implementing this. Surely you could find someone on fiver to set this up .... hell id even pay to help it get done!
PLEASE IMPLEMENT THIS ASAP!!!!!!!!!!! -
@Reese-Henschen
Yes, this is highly requested! -
Hello together,
i have the same issue.
But i found a little workaround if you need this autoplay on fix browsers.
I use the embedded windy for build a weatherstation on a Tablet with chrome browser. I spended much time but find only this way to become a working autoplay.The script is tested at Firefox and Chrome browser, there we have the tampermonkey app, at firefox on android,too
But i have realy no idea how i can run this script on apps like kisok mode or other browser whre had no function to run tampermonkey.
I have installed the app tampermonkey on my chrome browser and implemented there this script:
// ==UserScript==
// @name Windy Auto Play
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically click the play button on Windy after 10 seconds
// @author Your Name
// @match https://embed.windy.com/embed.html*
// @grant none
// ==/UserScript==(function() {
'use strict';// Wait 10 seconds before clicking the play button setTimeout(() => { const playButton = document.querySelector('[data-ref="play"]'); if (playButton) { playButton.click(); } }, 5000);})();
I hope windy find a way to implement this in the embedded part,too.