-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFoto3.html
24 lines (24 loc) · 861 Bytes
/
Foto3.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<title>Fotoanzeige V3</title>
<style>
#map { display:inline-block;width:800px;height:500px;width:100%;height:90vh }
</style>
</head>
<body>
<h1>Fotoanzeige V3</h1>
<div id="map" class="gpxview:Beispiel1.gpx:Satellit"><noscript><p>Zum Anzeigen der Karte wird Javascript benötigt.</p></noscript></div>
<p><a href="https://www.j-berkemeier.de/GPXViewer/">GPX-Viewer</a></p>
<script src="GM_Utils/GPX2GM.js"></script>
<script>
const mapele = document.getElementById("map");
mapele.addEventListener("click_Marker_Bild",function(event) {
location.href = event.detail.events.eventparameter.src;
event.preventDefault();
});
</script>
</body>
</html>