@Ondřej-Šutera "const options = {
// Required: API key
key: "", // REPLACE WITH YOUR KEY !!!
// Put additional console output
verbose: true,
// Optional: Initial state of the map
lat: 50.4,
lon: 14.3,
zoom: 2,
};
// Initialize Windy API
windyInit(options, (windyAPI) => {
// windyAPI is ready, and contain 'map', 'store',
// 'picker' and other usefull stuff
const { map, store, picker, overlays, broadcast } = windyAPI;
L.popup().setLatLng([50.4, 14.3]).setContent("Hello World").openOn(map);
});"