-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.76 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactie Kaart van Stations</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<style>
#map { height: 100vh; }
</style>
</head>
<body>
<div id="map"></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script>
// Maak de kaart en stel de locatie in op het midden van België
const map = L.map('map').setView([50.8503, 4.3517], 8);
// Voeg de kaartlaag toe
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution: 'Map data © <a href="https://openstreetmap.org">OpenStreetMap</a> contributors'
}).addTo(map);
// Station gegevens: naam, locatie (lat, lng), en link naar het HTML bestand
const stations = [
{ naam: "Brussel Noord", coords: [50.8649, 4.3575], url: "brussel-noord.html" },
{ naam: "Mechelen", coords: [51.0257, 4.4775], url: "mechelen.html" },
{ naam: "Londerzeel", coords: [51.0046, 4.3034], url: "londerzeel.html" },
{ naam: "Vilvoorde", coords: [50.9286, 4.4296], url: "vilvoorde.html" },
{ naam: "Zaventem Luchthaven", coords: [50.8870, 4.4836], url: "zaventem.html" },
{ naam: "Brugge", coords: [51.2093, 3.2247], url: "brugge.html" },
{ naam: "Oostende", coords: [51.2158, 2.9270], url: "oostende.html" }
];
// Voeg een marker toe voor elk station
stations.forEach(station => {
L.marker(station.coords)
.addTo(map)
.bindPopup(station.naam)
.on('click', () => {
window.open(station.url, '_blank'); // Open de URL in een nieuw tabblad
});
});
</script>
</body>
</html>