-
Notifications
You must be signed in to change notification settings - Fork 4
/
map.html
36 lines (34 loc) · 1.65 KB
/
map.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
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""/>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/map.css">
</head>
<body>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
<div id="mapid"></div>
<div id="map__menu">
<a href="index.html">← Volver al listado</a>
</div>
<div id="map__buttons">
<label class="btn btn-info">
<input type="checkbox" autocomplete="off" id="filtro-oferta" checked data-checked="false">
<span class="glyphicon glyphicon-bold">Oferta</span>
</label>
<label class="btn btn-info">
<input type="checkbox" autocomplete="off" id="filtro-demanda" checked data-checked="false">
<span class="glyphicon glyphicon-bold">Demanda</span>
</label>
</div>
</script>
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.11.0/firebase-database.js"></script>
<script src="src/config.js"></script>
<script src="src/map.js"></script>
</body>
</html>