forked from hallahan/LeafletPlayback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 1.66 KB
/
index.html
File metadata and controls
61 lines (52 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>LeafletPlayback</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" rel="stylesheet" type="text/css" />
<link href="http://visjs.org/dist/vis.css" rel="stylesheet" type="text/css" />
<style>
#map {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 120px;
}
#title_container {
z-index: 10000;
position: absolute;
left: 100px;
}
#timeline {
height: 120px;
position: absolute;
left: 0;
right: 0;
bottom: 0;
}
</style>
</head>
<body>
<div id="title_container">
<h1>LeafletPlayback</h1>
<p>From sources</p>
</div>
<div id="map"></div>
<div id="timeline"></div>
<script src="http://code.jquery.com/jquery-1.11.0.js"></script>
<script src="http://visjs.org/dist/vis.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet-src.js"></script>
<script src="./src/Util.js"></script>
<script src="./src/MoveableMarker.js"></script>
<script src="./src/Track.js"></script>
<script src="./src/TrackController.js"></script>
<script src="./src/Clock.js"></script>
<script src="./src/TracksLayer.js"></script>
<script src="./src/Control.js"></script>
<script src="./src/Playback.js"></script>
<script src="./data/demo/demo-tracks.js"></script>
<script src="./examples/example_1.js"></script>
</body>
</html>