-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
executable file
·42 lines (36 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Geocaching GPX Viewer</title>
<meta name="description" content="Geocaching GPX viewer is web app to display your geocaches or tracks from a GPX file."/>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" type="text/css" href="gcgpxviewer.min.css" media="all" />
</head>
<body>
<div id="sidebar">
<h1>Options</h1>
<div>Select your GPX files:<br />
<input type="file" id="files" name="files[]" multiple />
<div id="loader"></div>
<output id="list"></output>
</div>
<hr />
<p id="options">
<input id="display_labels" type="checkbox" /> <label for="display_labels">Display labels</label><br />
<input id="display_perimeters" type="checkbox" /> <label for="display_perimeters">Display perimeters</label>
</p>
<p>
<input type="button" id="clear" value="Clear the map" />
</p>
<hr />
<div id="footer">
<a href="https://github.com/Surfoo/gc-gpx-viewer">GitHub Project</a> ·
<a href="https://github.com/Surfoo/gc-gpx-viewer/issues">Issues</a> ·
<div id="flattr"></div>
</div>
</div>
<div id="map"></div>
<script type="text/javascript" src="js/gcgpxviewer.min.js?20170814"></script>
</body>
</html>