Leaflet/debug/map/wms.html
Jon Koops 7ac98758d4
Drop UMD and make ESM the default entrypoint (#8826)
Signed-off-by: Jon Koops <jonkoops@gmail.com>
Co-authored-by: Florian Bischof <design.falke@gmail.com>
2025-03-17 15:59:00 +01:00

43 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Leaflet debug page - WMS</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
<link rel="stylesheet" href="../../dist/leaflet.css" />
<link rel="stylesheet" href="../css/screen.css" />
<script type="importmap">
{
"imports": {
"leaflet": "../../dist/leaflet-src.js"
}
}
</script>
</head>
<body>
<div id="map"></div>
<script type="module">
import {Map, TileLayer, LatLngBounds, LatLng, Control} from 'leaflet';
const map = new Map('map');
const osmUrl = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png';
const osm = new TileLayer(osmUrl);
const osm2 = new TileLayer(osmUrl);
const nexrad = new TileLayer.WMS('https://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r.cgi', {
layers: 'nexrad-n0r-900913',
format: 'image/png',
transparent: true,
attribution: 'Weather data &copy; 2011 IEM Nexrad',
opacity: 0.4
});
const bounds = new LatLngBounds(new LatLng(32, -126), new LatLng(50, -64));
map.addLayer(osm).addLayer(nexrad).fitBounds(bounds);
new Control.Layers({CM: osm, CM2: osm2}, {NexRad: nexrad}).addTo(map);
</script>
</body>
</html>