-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalmap.html
executable file
·36 lines (35 loc) · 1.59 KB
/
globalmap.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Canopeo map</title>
<link rel="stylesheet" href="public/css/bulma.min.css">
<link rel="stylesheet" href="public/css/custom.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"
integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA=="
crossorigin=""/>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase.js"></script>
</head>
<body>
<nav class="navbar">
<div id="navbarMenuHeroA" class="navbar-menu">
<div class="navbar-start">
<a class="button navbar-item" href="index.html" style="margin:5px;">
<i class="fa fa-home fa-fw" aria-hidden="true"></i> Home
</a>
</div>
</div>
</nav>
<div class="container" style="margin-bottom: 10px;">
<div id="mapid" class="container" style="height: 90vh; margin: 5px"></div>
</div>
<script src="https://unpkg.com/leaflet@1.3.4/dist/leaflet.js"
integrity="sha512-nMMmRyTVoLYqjP9hrbed9S+FzjZHW5gY1TWCHA5ckwXZBadntCNs8kEqAWdrb9O7rxbCaA4lKTIWjDXZxflOcA=="
crossorigin="">
</script>
<script src="public/js/globalmap.js"></script>
</body>
</html>