Hi, I use javascript in my html page:
Weather maps 1.0:
var Meteo = new L.TileLayer(“http://tile.openweathermap.org/map/precipitation_new/{z}/{x}/{y}.png?appid=xxx”);
mymap.addLayer(Meteo);
WORK fine…
Using Weather maps 2.0:
var Meteo = new L.TileLayer(“http://maps.openweathermap.org/maps/2.0/weather/WND/{z}/{x}/{y}&appid=xxx”);
mymap.addLayer(Meteo);
NOT WORK. Can you tell me why ?