-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·44 lines (41 loc) · 1.74 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<title>SHARE GPX TRACKS</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="share-tracks.css" />
<link rel="stylesheet" href="//unpkg.com/[email protected]/gh-fork-ribbon.css"></head>
<body>
<div id="tracklist">
<h1>SHARE GPX TRACKS</h1>
<p>
The simple way to share your paths in the rest of the web.<br />
<iframe src="https://ghbtns.com/github-btn.html?user=stefanocudini&repo=share-tracks&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="104px" height="20px"></iframe>
<br />
Other useful stuff for <a href="https://opengeo.tech/maps/">Web Mapping...</a>
</p>
<button id="load" href="#">Load Tracks</button>
<ul id="gpxs">
</ul>
<br />
<h4>Features</h4>
<ul>
<li><a href="embed.php">Maps Embedder</a></li>
<li>Support Mobile Devices:<br />
<img src="images/mobile-map.png" />
</li>
</ul>
<div id="copy">
<a href="https://opengeo.tech/">Opengeo.tech</a> • <a rel="author" href="https://opengeo.tech/stefano-cudini/">Stefano Cudini</a>
</div>
<a href="https://github.com/stefanocudini/share-tracks" class="github-fork-ribbon" data-ribbon="Fork me on GitHub">Github</a>
</div>
<script src="//unpkg.com/[email protected]/dist/jquery.js"></script>
<script type="text/javascript">
$('#load').on('click',function() {
$('#gpxs').load('./gpxs.php')
});
</script>
</body>
</html>