-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 1.82 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="USGS Earthquakes visualization using Leaflet"
content="USGS Earthquakes visualization using Leaflet"
/>
<meta
name="keywords"
content="USGS, earthquakes, Leaflet, map, visualization"
/>
<meta name="Edgar Figueira" content="Universidade do Porto" />
<meta name="robots" content="index, follow" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="assets/earthquake.png" type="image/x-icon" />
<title>USGS Earthquakes - Daily records</title>
<!-- Leaflet plugin -->
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- Heatmap plugin -->
<script src="https://unpkg.com/leaflet.heat/dist/leaflet-heat.js"></script>
<!-- Draw plugin -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/leaflet.draw.js"></script>
<!-- Draw plugin stylesheet -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/leaflet.draw.css"
/>
<script src="dados/falhas/falhas.geojson"></script>
<script src="dados/placas_tectonicas/placas.geojson"></script>
<link rel="stylesheet" href="styles/index.css" />
</head>
<body>
<!-- Div for the map -->
<div id="map"></div>
<!-- Counter for earthquakes -->
<div id="earthquake-count" class="counter">Earthquakes: 0</div>
<!-- Button for downloading -->
<button class="download-button">Download data</button>
<script src="js/index.js"></script>
</body>
</html>