-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
56 lines (49 loc) · 1.92 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mapa UC 🗺️</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<link href="https://api.mapbox.com/mapbox-gl-js/v3.0.1/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v3.0.1/mapbox-gl.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav role="navigation">
<div id="menuToggle">
<!--
A fake / hidden checkbox is used as click reciever,
so you can use the :checked selector on it.
-->
<input type="checkbox" />
<!--
Some spans to act as a hamburger.
They are acting like a real hamburger,
not that McDonalds stuff.
-->
<span></span>
<span></span>
<span></span>
<!--
Too bad the menu has to be inside of the button
but hey, it's pure CSS magic.
source: https://codepen.io/erikterwan/pen/EVzeRP
-->
<ul id="menu">
<a class ="button" id ="Inicio" href="#"><li>Inicio</li></a>
<a class ="button" id = "Edificios" href="#"><li>Edificios 🏢</li></a>
<a class ="button" id = "Salas" href="#"><li>Salas 🧑🏫</li></a>
<a class ="button" id = "Agua" href="#"><li>Agua 💧 ♨️</li></a>
<a class ="button" id = "Comida"href="#"><li>Comida 🍔</li></a>
<a class ="button" id = "Baños"href="#"><li>Baños 🚽</li></a>
<a class ="button" id = "Reciclaje"href="#"><li>Puntos de ♻️</li></a>
<a class ="button" href="https://ibgarrido.cl"><li>Contacto 📞</li></a>
</ul>
</div>
</nav>
<div id="map-container">
<div id="map"></div>
</div>
<script src="script.js"></script>
</body>
</html>