-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<title>Heatmap</title>
<link href='https://api.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.css' rel='stylesheet' />
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="map"></div>
<div class="map-overlay bottom-left">
<div class="map-overlay-inner">
<h2>Anchorage Solar Installations</h2>
<input id="year-slider" type="range" min="2017" max="2023" step="1" value="2017">
<p>Year: <span id="year-display"></span></p>
</div>
</div>
<div class="map-overlay legend">
<div class="map-overlay-transparent">
<div class="color-group">
<div class="color-box" style="background-color: #D889E8;"></div>
<div class="color-box" style="background-color: #996DE8;"></div>
<div class="color-box" style="background-color: #434FE6;"></div>
</div>
<div class="color-group">
<div class="color-circle" style="background-image: url('images/low_density.jpg');"></div>
<div class="color-circle" style="background-image: url('images/med_density.jpg');"></div>
<div class="color-circle" style="background-image: url('images/high_density.jpg');"></div>
</div>
</div>
</div>
<script src='https://api.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src='code/heatmap.js'></script>
</body>
</html>