-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 2.33 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset='utf-8' />
<title>Draghi verdi</title>
<link rel="shortcut icon" type="image/jpg" href="/res/img/favicon.png"/>
<meta name='viewport' content='width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no'/>
<!-- bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin=""/>
<!-- leaflet -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<!-- custom css -->
<link rel='stylesheet' href='res/css/custom.css' />
<!-- geoJSON data -->
<!-- <script src="/res/data/vedovelle.geojson" type="text/javascript"></script>
<script src="/res/js/leaflet.ajax.min.js"></script> -->
<script src="/res/js/data.js"></script>
<!-- geolocation control -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet.locatecontrol/dist/L.Control.Locate.min.css" />
<script src="https://cdn.jsdelivr.net/npm/leaflet.locatecontrol/dist/L.Control.Locate.min.js" charset="utf-8"></script>
</head>
<body>
<header>
<div class="text-center cover">
<img src="res/img/logo.png" class="img-fluid cover-img"/>
</div>
</header>
<div id="map-wrapper" class="map-wrapper">
<div id='map'></div>
</div>
<footer>
<div class="footer">
<div class="footer-content">
MADE WITH ❤️ IN MILAN
</div>
</div>
</footer>
<!-- custom script -->
<script src="/res/js/map.js"></script>
</body>
</html>