-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeispiel1.html
27 lines (27 loc) · 1.16 KB
/
Beispiel1.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>GPXViewer Beispiel 1</title>
<script src="GM_Utils/GPX2GM.js"></script>
<style>
html, body { padding-right:0 }
.map {width:100%;height:100vh}
footer { border-top: thin solid currentColor; padding-top: .5em; margin-top: .5em; }
@media screen and (min-width:700px) {
.text { display:inline-block; vertical-align: top; padding-right:1em; width:25%; margin:0 }
.map { display:inline-block; width: 72%; width:calc(75% - 25px); height:95vh; height:calc(100vh - 10px); margin:0; padding:0 }
}
</style>
</head>
<body>
<div class="text">
<h1>GPXViewer Beispiel 1 - nur eine Karte</h1>
<p>Das Beispiel zeigt den Track einer Radtour im Allgäu in der Nähe von Füssen.</p>
</div>
<div class="map gpxview:Beispiel1.gpx:Satellit"><noscript><p>Zum Anzeigen der Karte wird Javascript benötigt.</p></noscript></div>
<p><a href="Beispiel1.gpx">Download GPX-File</a>
<footer>2. 2. 2021 <a href="https://www.j-berkemeier.de/GPXViewer/">GPX-Viewer</a></footer>
</body>
</html>