-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
99 lines (92 loc) · 3.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>Jamaican Slave Revolt</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5/leaflet.ie.css" />
<![endif]-->
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/map.css" />
<link rel="stylesheet" href="css/sidepanel.css" />
<link rel="stylesheet" href="css/timeline.css" />
<link rel="stylesheet" href="css/steps.css" />
<link rel="stylesheet" href="css/probes.css" />
<link rel="stylesheet" href="css/leafletcustom.css" />
<link rel="stylesheet" href="lib/fancybox/jquery.fancybox.css" />
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic|PT+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css' />
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.5/leaflet.js"></script>
<script src="lib/fancybox/jquery.fancybox.pack.js"></script>
<script src="lib/AnimatedMarker.js"></script>
<script src="lib/AnimatedLine.js"></script>
<!--script src="lib/PolylineTracer.js"></script-->
<script src="js/RevoltPopup.js"></script>
<script src="js/init.js"></script>
<script src="js/map.js"></script>
<script src="js/data.js"></script>
<script src="js/controls.js"></script>
<script src="js/mapcontent.js"></script>
<script src="js/playback.js"></script>
<script src="js/timeline.js"></script>
<script src="js/layout.js"></script>
</head>
<body>
<div id="side">
<div id="controls">
<div id="prev"></div>
<div id="play"><b>PLAY </b></div>
<div id="next"></div>
</div>
<div id="date" class="heading"></div>
<div id="text"></div>
<div class="triangle"></div><div id="legend-title" class="heading">Map Legend</div>
<div id="legend">
<p>Size of Force</p>
<img src='images/troopLegend.png' alt='troops'/> = 100 people
<p>Clash with Rebels</p>
<img src='images/clashLegend.png' alt='clash'/>
<p>Troop locations</p>
<div id="units">
<img src='images/rebels.png' alt='rebels'/> Rebels<br/>
<img src='images/militia.png' alt='militia'/> Militia<br/>
<img src='images/regulars.png' alt='army'/> Army<br/>
<img src='images/navy.png' alt='navy'/> Navy<br/>
<img src='images/maroons.png' alt='maroons'/> Maroons<br/>
<img src='images/conspiracy.png' alt='conspiracy'/> Conspiracy<br/>
<img src='images/slavecourt.png' alt='slave court'/> Slave Court<br/>
<img src='images/uncertainLegend.png' alt='uncertain' style='margin-left: 0'/>Uncertain location
</div>
<a class="fancybox" href="images/map_legend.png">
<p>Base map legend</p>
<img src="images/map_legend_thumb.png" alt="map legend" title="Click to see base map legend"/>
</a>
</div>
</div>
<div id="map" style="height: 100%"></div>
<div id="basemap-switcher">
<p>
<span class="basemap-link selected">Places Map</span> |
<span class="basemap-link">Terrain Map</span>
</p>
</div>
<div id="top">
<div>
<div id="step"></div>
<b></b>
</div>
</div>
<div id="bottom"></div>
<p id="timeline-probe"></p>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-52045027-1', 'axismaps.com');
ga('send', 'pageview');
</script>
</body>
</html>