-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeispiel5.html
31 lines (31 loc) · 1.49 KB
/
Beispiel5.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<title>GPXViewer Beispiel 5</title>
<script src="GM_Utils/GPX2GM.js"></script>
<style>
body { width:calc(100% - 50px);padding: 10px 10px 10px 30px }
figure { margin:0;padding:0; }
#gpxviewer { display: grid; gap: .3em; grid-template-columns: repeat(auto-fit, minmax(15em, 1fr )); }
#map1 { height:100vh; }
#map1_profiles { height:100vh; }
#map1_hpt { height:calc((100% + 64px)/3);margin-top:10px }
#map1_spt { height:calc((100% + 64px)/3);margin-top:-37px }
#map1_vpt { height:calc((100% + 64px)/3);margin-top:-37px }
</style>
</head>
<body>
<h1>GPXViewer Beispiel 5 - Karte und Profile gegen Zeit</h1>
<div id="gpxviewer">
<figure id="map1" class="gpxview:Beispiel1.gpx:Karte"><noscript><p>Zum Anzeigen der Karte wird Javascript benötigt.</p></noscript></figure>
<figure id="map1_profiles">
<figure id="map1_hpt" class="no_x"><noscript><p>Zum Anzeigen des Profils wird Javascript benötigt.</p></noscript></figure>
<figure id="map1_spt" class="no_x"><noscript><p>Zum Anzeigen des Profils wird Javascript benötigt.</p></noscript></figure>
<figure id="map1_vpt"><noscript><p>Zum Anzeigen des Profils wird Javascript benötigt.</p></noscript></figure>
</figure>
</div>
<hr><p>2. 7. 2020 <a href="https://www.j-berkemeier.de/GPXViewer/">GPX-Viewer</a></p>
</body>
</html>