forked from hallahan/LeafletPlayback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.66 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
<!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="//cdnjs.cloudflare.com/ajax/libs/vis/3.12.0/vis.min.css" rel="stylesheet" type="text/css"/>
<link href="./demo/lib/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<link href="./index.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="title_container">
<h1><i class="icon-leaf"></i> <a href="https://github.com/hallahan/LeafletPlayback">LeafletPlayback</a></h1>
<p>
<iframe src="https://ghbtns.com/github-btn.html?user=hallahan&repo=LeafletPlayback&type=star&count=true&size=large"
frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</p>
</div>
<div id="map"></div>
<div id="timeline"></div>
<script src="http://code.jquery.com/jquery-1.11.0.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/vis/3.12.0/vis.min.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>