-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeispiel4_es.html
34 lines (34 loc) · 1.58 KB
/
Beispiel4_es.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<title>GPXViewer Ejemplo 4</title>
<script>
var Fullscreenbutton = true;
</script>
<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_hp { height:calc((100% + 64px)/3);margin-top:10px }
#map1_sp { height:calc((100% + 64px)/3);margin-top:-37px }
#map1_vp { height:calc((100% + 64px)/3);margin-top:-37px }
</style>
</head>
<body>
<h1>GPXViewer Ejemplo 4 - Mapa y perfil contra pista con millas y pies como unidades de longitud</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_hp" class="no_x"><noscript><p>Zum Anzeigen des Profils wird Javascript benötigt.</p></noscript></figure>
<figure id="map1_sp" class="no_x"><noscript><p>Zum Anzeigen des Profils wird Javascript benötigt.</p></noscript></figure>
<figure id="map1_vp"><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>