Wind Speed field via Copernicus Marine Services WMS and Leaflet

Global Ocean Daily Gridded Sea Surface Winds from Scatterometer

<div id="map"></div>
#map {
height: 500px;
width: 80%;
}
// We’ll add a tile layer to add to our map, in this case it’s a OSM tile layer.
// Creating a tile layer usually involves setting the URL template for the tile images

const osmUrl = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png';
const osmAttrib = '&copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors';
const osm = L.tileLayer(osmUrl, {
maxZoom: 18,
attribution: osmAttrib
});

const wmsLayer = L.tileLayer.wms(
'http://nrt.cmems-du.eu/thredds/wms/KNMI-GLO-WIND_L3-OBS_METOP-A_ASCAT_12_ASC_V2',
{
layers: 'wind_speed',
format: 'image/png',
transparent: true,
}
);

// initialize the map on the "map" div with a given center and zoom
var map = L.map('map').setView([59.423885, 24.700530], 5)
.addLayer(osm)
.addLayer(wmsLayer);