-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
101 lines (101 loc) · 3.36 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<!--
Created by: Márton Salomváry
Contact: [email protected] twitter.com/salomvary
Tourist map data: http://turistautak.hu
Fork me on GitHub: https://github.com/salomvary/turistautak
Icons: Glyphish.com
-->
<html>
<head>
<script type="text/javascript">
if (
'outdoormaps.eu' == window.location.host &&
window.location.protocol != 'https:'
)
window.location.protocol = 'https';
</script>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"
/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link
rel="apple-touch-icon"
sizes="114x114"
href="app/assets/apple-touch-icon-114x114.png"
/>
<link rel="canonical" href="https://outdoormaps.eu" />
<title>Outdoor Maps</title>
<!-- build:css assets/app.css -->
<link rel="stylesheet" href="app/assets/app.css" />
<!-- endbuild -->
<link
rel="shortcut icon"
href="app/assets/favicon.ico"
type="image/x-icon"
/>
<link rel="icon" href="app/assets/favicon.ico" type="image/x-icon" />
<!-- chrome mobile home screen support -->
<meta name="mobile-web-app-capable" content="yes" />
<link
rel="shortcut icon"
sizes="114x114"
href="app/assets/apple-touch-icon-114x114.png"
/>
</head>
<body>
<div id="map" class="map"></div>
<div id="settings" class="page">
<header>
<button class="btn" id="close-button">Close</button>
</header>
<section>
<div class="map-types">
<p class="map-type btn-group horizontal-btn-group">
<button class="btn left active" name="hiking">Outdoor</button>
<button class="btn middle" name="satellite">Satellite</button>
<button class="btn right" name="map">Map</button>
</p>
<div class="map-layers"></div>
<h3 class="control-group-title">Overlays</h3>
<div class="map-overlays"></div>
</div>
</section>
</div>
<div id="routing-settings" class="page" style="display: none">
<header>
<button class="btn close-page-button">Close</button>
</header>
<section>
<h3 class="control-group-title">Routing services</h3>
<div class="routing-services"></div>
</section>
</div>
<div id="routing-panel" class="routing-panel">
<span class="routing-panel-stats">
<div class="routing-panel-distance">0 km</div>
<div class="routing-panel-elevation">
+<span class="routing-panel-ascent">0 m</span> -<span
class="routing-panel-descent"
>0 m</span
>
</div>
</span>
<span
class="routing-vehicle-buttons flat-btn-group flat-horizontal-btn-group"
>
</span>
<select class="routing-vehicle-select"></select>
<button class="routing-panel-settings-button settings-button">
</button>
<button class="routing-panel-export-button export-button"> </button>
<button class="routing-panel-clear-button delete-button"> </button>
<button class="routing-panel-close-button close-button"> </button>
</div>
<script src="dist/main.js"></script>
</body>
</html>