Leaflet/debug/vector/vector.html
2025-04-20 16:40:53 +02:00

37 lines
1.0 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Leaflet debug page - Vector</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 {TileLayer, Map, LatLng, Polyline, LatLngBounds, Marker} from 'leaflet';
import route from './route.js';
const osm = new TileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {maxZoom: 18});
const map = new Map('map', {layers: [osm]});
const latlngs = route.map(p => new LatLng(p[0], p[1]));
const path = new Polyline(latlngs)
.bindPopup('Hello world');
map.fitBounds(new LatLngBounds(latlngs));
map.addLayer(new Marker(latlngs[0]));
map.addLayer(new Marker(latlngs[route.length - 1]));
map.addLayer(path);
</script>
</body>
</html>