-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 988 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Map</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h2 id='title'>New Vehicle Fleet in Switzerland</h2>
<div id="mode-container">
<label for="mode"></label>
<select id="mode"></select>
</div>
<div id='tooltip'></div>
<svg></svg>
<div class="slidecontainer">
<label for="time">2014</label>
<input type="range" min="2014" max="2021" value="2014" class="slider" id="time">
<label for="time">2021</label>
</div>
<div id='description'>This map shows statistical data for Switzerland regarding cars...
Source: <a href='https://opendata.swiss/de/dataset/kennzahlen-neuwagenflotte'>opendata.swiss</a>
</div>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>