@korina Thanks for getting in touch! I just sent you the info through PM.
Latest posts made by asjustis
-
RE: Have you changed the API code
-
RE: Have you changed the API code
+1. I am also experiencing this issue, running
store.set("overlay", type);
insidewindyInit()
does not work since yesterday. (type is either 'clouds', 'temp', etc etc, all of them displays the same thing).Is it possible to get an estimate on a fix? We use it to capture weather data daily, and it's important to understand if we can expect the fix today or later.
Cheers,
Justinas -
Moisture Anomaly layer availability
Hi guys,
I want to be able to display Moisture Anomaly layer through API, is that possible? 'awd' code is not on the store.getAllowed() list, and not sure whether it's just a data model selection issue?
We use Pro license.
This is the layer I'd like to access:
https://www.windy.com/-Moisture-anomaly-awd_0_40?awd_0_40,54.674,25.313,5It is also described here: https://community.windy.com/topic/3361/description-of-weather-overlays
Thanks,
Justinas -
RE: Bug when setting fractional zoom (zoomSnap)
@asjustis Additionally, I found that at least for labels, the issue is calculating the transform position for the label div. As in the screenshot, tile seems to perfectly positioned, and just the label position is somewhere far far away in the galaxy :))
Any chance for a fix or a workaround?
We were about to grab the pro license and launch our project, but bumped into this issue which is quite critical for us.
Thanks,
Justinas! -
Bug when setting fractional zoom (zoomSnap)
Hi guys,
Just ran into an issue while trying to set a fractional zoom value on Windy map.
Leaflet by default snaps zoom levels to an integer value, and their documentation says a solution for that is to set zoomSnap value to other than 1 (i.e. 0.1 means we can use 8.1, 8.2, 8.3, and so on). Well, that works for zooming.
However, while in these fractional zoom values, Windy labels are just gone. They are only visible only when zoom value is equal to an integer.
windyInit(config.windyOptions, windyAPI => { const { map, colors, broadcast, store, picker, utils } = windyAPI; map.options.zoomSnap = 0.1; map.setZoom(8.4) }