-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeispiel2.html
32 lines (32 loc) · 1.57 KB
/
Beispiel2.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GPXViewer Beispiel 2</title>
<script>
var Shtrcmt = true;
</script>
<script src="GM_Utils/GPX2GM.js"></script>
<style>
html, body { height:100%; padding-right:0 }
.map {width:100%;height:100%}
@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:95%; height:calc(100% - 10px); margin:0; padding:0 }
}
</style>
</head>
<body>
<h1>GPXViewer Beispiel 2 - weitere Karten mit Button anzeigen</h1>
<div class="text">
<p><button type="button" class="gpxview:map:skaliere">Alles anzeigen</button></p>
<p><button type="button" class="gpxview:map:skaliere:47.68058,10.90050,.5">500 Meter um die<br>Wieskirche anzeigen</button></p>
<p><button type="button" class="gpxview:map:lade:Beispiel1.gpx:Hybrid">1. Karte laden</button></p>
<p><button type="button" class="gpxview:map:lade:Beispiel2.gpx:Karte">2. Karte laden</button></p>
<p><button type="button" class="gpxview:map:lade:Beispiel3.gpx:Oberflaeche">3. Karte laden</button></p>
<hr /><p>5. 5. 2019 <a href="https://www.j-berkemeier.de/GPXViewer/">GPX-Viewer</a></p>
</div>
<div id="map" class="map gpxview:Beispiel1.gpx:Satellit"><noscript><p>Zum Anzeigen der Karte wird Javascript benötigt.</p></noscript></div>
</body>
</html>