-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathol-map.html
More file actions
60 lines (58 loc) · 2.8 KB
/
ol-map.html
File metadata and controls
60 lines (58 loc) · 2.8 KB
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
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visor OL</title>
<!-- <link rel="stylesheet" href="https://openlayers.org/en/v6.1.0/css/ol.css" type="text/css"> -->
<link rel="stylesheet" href="./node_modules/ol/ol.css">
<link rel="stylesheet" href="./node_modules/ol-layerswitcher/src/ol-layerswitcher.css">
<link rel="stylesheet" href="./overlay.scss">
<link rel="stylesheet" href="./legend.scss">
<link rel="stylesheet" href="./ol-customized.scss">
<link rel="stylesheet" href="./layerswitcher.scss">
<link rel="stylesheet" href="./visor.scss">
<link rel="stylesheet" href="./reset.scss">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header__titlebox">
<h2 class="header__title"><span class="br">Mapa web interactivo: </span>Ratio comercios de alimentación por sección censal</h2>
</div>
<div class="header__logos">
<p class="header__logos-text">Fuentes de datos: </p>
<div class="header__logos-1"></div>
<div class="header__logos-2"></div>
</div>
</header>
<div class="subheader">
<h3 class="subheader__title">Trabajo final de máster</h3>
<h3 class="subheader__subtitle">Tfm</h3>
<div class="subheader__logo"></div>
<h4 class="subheader__author"> Eduardo Saldaña Olcina</h4>
</div>
<section class="frame">
<div class="map" id="map">
<div id="popup" class="ol-popup">
<p class="popup-text">Amenity: </p><span class="popup-data" id="feature-amenity"></span><br>
<p class="popup-text">Brand: </p><span class="popup-data" id="feature-brand"></span><br>
<p class="popup-text">Name: </p><span class="popup-data" id="feature-name"></span><br>
<p class="popup-text">Shop: </p><span class="popup-data" id="feature-shop"></span><br>
</div>
<div id="popup-zonas" class="ol-popup">
<p class="popup-text">Hab: </p><span class="popup-data" id="feature-hab"></span><br>
<p class="popup-text">Nº comercios: </p><span class="popup-data" id="feature-comercios"></span><br>
<p class="popup-text">Ratio: </p><span class="popup-data" id="feature-ratio"></span><br>
</div>
<div class="legend-frame">
<p class="legend-title">Ratio comercios <br>por 1000 hab</p>
<img class="legend" id="legend"/>
</div>
</div>
</section>
<section></section>
<footer></footer>
<script type="text/javascript" src="ol-map.js"></script>
</body>
</html>