-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 2.71 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- CSS Imports -->
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/leaflet.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Sidebar -->
<div class="sidebar">
<div>
<h1>Building Energy Benchmark in Seattle (2018)</h1>
<p class="main" id="part01">This city of Seattle collects information
about its buildings energy consumption, for different
sources of energy.</p>
<p id="part02">This application shows some of those measurements and
benchmarks, according to the building type. Please click the "Next" button below to start the slideshow."</p>
</div>
<button id="previousButton">Previous</button>
<button id="nextButton">Next</button>
</div>
<!-- Map -->
<div id="map" class="map"></div>
<!-- Legend -->
<!-- The template for this legend was obtained here: https://tilemill-project.github.io/tilemill/docs/guides/advanced-legends/ -->
<div class="legend" id="legend_bldtype">
<div class='my-legend'>
<div class='legend-title'>Building Types</div>
<div class='legend-scale'>
<ul class='legend-labels'>
<li><span style='background:#a6bddb;'></span>Non Residential Building</li>
<li><span style='background:#ff7f00;'></span>Residential Building</li>
<li><span style='background:#6a51a3;'></span>Institutional Building</li>
<li><span style='background:#000000;'></span>Campus</li>
<li><span style='background:#addd8e;'></span>School</li>
</ul>
</div>
<div class='legend-source'>Source: <a href="https://data.seattle.gov/dataset/2018-Building-Energy-Benchmarking/7rac-kyay">Seattle Open Data</a></div>
</div>
</div>
<div class="legend" id="legend_compliance">
<div class='my-legend'>
<div class='legend-title'>Compliance Status</div>
<div class='legend-scale'>
<ul class='legend-labels'>
<li><span style='background:#2ca25f;'></span>Compliant</li>
<li><span style='background:#de2d26;'></span>Non Compliant</li>
</ul>
</div>
<div class='legend-source'>Source: <a href="https://data.seattle.gov/dataset/2018-Building-Energy-Benchmarking/7rac-kyay">Seattle Open Data</a></div>
</div>
</div>
<!-- Javascript Imports -->
<!-- <script src="js/energy.js"></script> -->
<script src="js/jquery-2.2.0.js"></script>
<script src="js/underscore.js"></script>
<script src="js/leaflet.js"></script>
<script src="js/main.js"></script>
</body>
</html>