-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (54 loc) · 1.02 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>Leaflet/D3 Path Animation</title>
<meta charset="utf-8" />
<style type="text/css">
html {
height: 100%;
}
body {
border: 0;
margin: 0;
height: 100%;
width: 100%;
}
#map {
height: 100%;
width: 100%;
}
#date {
position: fixed;
top: 0;
right: 0;
width: 200px;
height: 20px;
text-align: right;
}
#message {
position: fixed;
right: 0;
bottom: 0;
}
.message {
z-index: 999;
background-color: #555;
color: #fff;
}
circle.path-marker {
fill: red;
}
</style>
<link rel="stylesheet" href="css/leaflet.css" />
<script src="js/leaflet.js"></script>
<script src="js/d3.js"></script>
<script src="js/queue.js"></script>
</head>
<body>
<div id="map"></div>
<div id="date" class="message">----</div>
<div id="message" class="message"></div>
<script type="text/javascript" src="js/pathAnimator.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>