-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap-leaflet.html
49 lines (37 loc) · 2.2 KB
/
map-leaflet.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
<html>
<head>
<title>Norwich: A Kind City</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="assets/leaflet/leaflet-pan-control/L.Control.Pan.css"/>
<link rel="stylesheet" href="assets/leaflet/leaflet-zoomhome/leaflet.zoomhome.css"/>
<link rel="stylesheet" href="assets/leaflet/leaflet-overpass/OverPassLayer.css"/>
<link rel="stylesheet" href="assets/leaflet/leaflet-gps/leaflet-gps.min.css"/>
<!--link rel="stylesheet" href="assets/leaflet/leaflet-link/L.Control.Link.css"/ -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css">
<style>
html, body, #map {
height:100%;
width:100%;
margin:0;
padding:0;
}
.leaflet-bar span { line-height:30px; }
</style>
</head>
<body>
<div id='map'></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og==" crossorigin=""></script>
<script src="assets/leaflet/leaflet-providers.js"></script>
<script src="assets/leaflet/leaflet-pan-control/L.Control.Pan.js"></script>
<script src="assets/leaflet/leaflet-zoomhome/leaflet.zoomhome.min.js"></script>
<!--script src="assets/leaflet/leaflet-link/L.Control.Link.js"></script-->
<script src="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.js"></script>
<script src="assets/leaflet/leaflet-overpass/OverPassLayer.js"></script>
<script src="assets/leaflet/leaflet-gps/leaflet-gps.min.js"></script>
<script src="https://cdn.osmbuildings.org/classic/0.2.2b/OSMBuildings-Leaflet.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>