-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·48 lines (47 loc) · 1.91 KB
/
index.html
File metadata and controls
executable file
·48 lines (47 loc) · 1.91 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GPXVis.js</title>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="styles/layout.css" rel="stylesheet">
<script data-main="scripts/main" src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.0.6/require.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<h1>gpxvis.js demo</h1>
<p>JavaScript modules for visualizing GPX data.</p>
<p>This is a simple demo of gpxvis.js features. Select a sample GPX file and a track below. The track is displayed on the map (together with all the waypoints in the GPX file) and an elevation profile chart is created. A range control widget (just below the elevation profile chart) allows you to select the range of the track to display on the map and in the elevation profile chart.</p>
</div>
</div>
<div class="row-fluid">
<div class="span8">
<h2>Visualization</h2>
<form>
<fieldset>
<label for="gpx">GPX file and track selection</label>
<select id="gpx"></select>
<select id="track"></select>
</fieldset>
</form>
<div id="map" class="row-fluid"></div>
<div id="elep" class="row-fluid"></div>
</div>
<div class="span4">
<h2>Configuration</h2>
<form id="configuration">
<fieldset>
<label for="trackPolylineStrokeColor">Track color</label>
<input type="text" id="trackPolylineStrokeColor"/>
<div class="controls">
<button type="submit" class="btn btn-primary">Apply</button>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</body>
</html>