-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
51 lines (45 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<title>Whale Hunting in the Faroe Islands</title>
<link rel="stylesheet" href="//js.arcgis.com/4.1/esri/css/view.css">
<link rel="stylesheet" href="//unpkg.com/c3@0.4.11/c3.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body class="red-theme">
<div id="viewDiv"></div>
<div id="mapControls" class="esri-widget map-controls">
<h1>Whale Hunting</h1>
<h2>in the <a href="https://en.wikipedia.org/wiki/Faroe_Islands" target="_blank">Faroe Islands</a></h2>
<div class="slider-controls">
<div id="yearInfo"></div>
<input id="yearSlider" class="range-slider" type="range" min="1996" max="2015" value="1996" />
<div id="totalInfo"></div>
</div>
<div id="chart"></div>
</div>
<div id="credits" class="esri-widget esri-component credits">
<a target="_blank" href="https://twitter.com/JWasilGeo">@JWasilGeo</a>
|
<a target="_blank" href="https://github.com/jwasilgeo/faroe-islands-whaling">Github</a>
</div>
<script>
var dojoConfig = {
async: true,
packages: [{
name: 'd3',
location: '//d3js.org',
main:'d3.v3.min'
}, {
name: 'c3',
location: '//unpkg.com/c3@0.4.11',
main: 'c3.min'
}]
};
</script>
<script src="//js.arcgis.com/4.1/"></script>
<script src="script.js"></script>
</body>
</html>