forked from ssz360/Covid-19-Outbreak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Covid-19 - Italy</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--
rel="shortcut icon"
type="image/x-icon"
href="docs/images/favicon.ico"
/> -->
<link rel="stylesheet" href="./css/style.css" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
/>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"></script>
</head>
<body>
<div id="map"></div>
<div class="slider-container">
<button id="play-button">Play</button>
<div id="slider">
</div>
</div>
<script type="text/javascript" src="./data/listOfItalyProvinces.js"></script>
<script type="text/javascript" src="./data/italyProvincesGeojson.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script type="text/javascript" src="./js/javascript.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>
</body>
</html>