-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeispiel3.html
46 lines (46 loc) · 2.27 KB
/
Beispiel3.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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="de">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<title>GPXViewer Beispiel 3</title>
<style type="text/css">
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:2em;width:25% }
.geo { display:inline-block; width: 67%; width:calc(70% - 25px); margin:0; padding:0 }
}
.geo .map { height:300px }
</style>
</head>
<body>
<h1>GPXViewer Beispiel 3 - weitere Karten mit Button anzeigen - mehrere Karten</h1>
<div class="text">
<p><button type="button" class="gpxview:map1:skaliere">Alles anzeigen</button></p>
<p><button type="button" class="gpxview:map1:lade:Beispiel1.gpx:Hybrid">1. Karte laden</button></p>
<p><button type="button" class="gpxview:map1:lade:Beispiel2.gpx:Oberflaeche">2. Karte laden</button></p>
<p><button type="button" class="gpxview:map1:lade:Beispiel3.gpx:Karte">3. Karte laden</button></p>
</div>
<div class="geo">
<div id="map1" class="map gpxview:Beispiel1.gpx:Satellit"><noscript><p>Zum Anzeigen der Karte wird Javascript benötigt.</p></noscript></div>
<div id="map1_profiles"><div id="map1_hp" class="map"></div></div>
</div>
<h2>2. Karte</h2>
<div class="text">
<p><button type="button" class="gpxview:map2:skaliere">Alles anzeigen</button></p>
<p><button type="button" class="gpxview:map2:lade:Beispiel1.gpx">1. Karte laden</button></p>
<p><button type="button" class="gpxview:map2:lade:Beispiel2.gpx:Karte">2. Karte laden</button></p>
<p><button type="button" class="gpxview:map2:lade:Beispiel3.gpx:Oberflaeche">3. Karte laden</button></p>
</div>
<div class="geo">
<div id="map2" class="map gpxview:Beispiel2.gpx"><noscript><p>Zum Anzeigen der Karte wird Javascript benötigt.</p></noscript></div>
<div id="map2_profiles"><div id="map2_hp" class="map"></div></div>
</div>
<hr><p>19. 3. 2015 <a href="https://www.j-berkemeier.de/GPXViewer/">GPX-Viewer</a></p>
<script>
//var GPXVIEW_Debuginfo = true;
</script>
<script src="GM_Utils/GPX2GM.js"></script>
</body>
</html>