-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
432 lines (376 loc) · 15.4 KB
/
index.html
File metadata and controls
432 lines (376 loc) · 15.4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mapas Interactivos</title>
<!-- Fuente Outfit -->
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500&display=swap" rel="stylesheet">
<style>
/* Estilos generales de la página */
body {
font-family: 'Outfit', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin: 0;
background-color: #f4f4f4;
}
/* Primera barra superior con el título y la descripción */
.header {
width: 100%;
background: #034538;
color: white;
height: 100px;
padding: 2px;
text-align: center;
}
/* Segunda barra donde están los botones de selección */
.menu {
width: 100%;
background: #73D68A;
height: 100px;
padding: 2px;
color: white;
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
/* Estilos de los botones de la barra de selección */
.menu button {
font-family: 'Outfit', sans-serif;
background: #11302D;
color: white;
border: none;
padding: 8px;
cursor: pointer;
transition: 0.3s;
}
/* Botón seleccionado */
.menu button.selected {
background: white;
color: #11302D;
}
/* Efecto hover en los botones */
.menu button:hover {
background: #666;
}
/* Contenedor principal del mapa */
.container {
width: 90%;
max-width: 1200px;
margin-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
/* Estilos para el iframe del mapa */
iframe {
width: 100%;
height: 480px;
border: none;
}
/* Contenedor del botón de expandir y el texto de copyright */
.expand-container {
display: flex;
align-items: center;
justify-content: flex-start;
width: 100%;
margin-top: 30px;
gap: 10px;
}
/* Botón para expandir el mapa */
.expand {
font-family: 'Outfit', sans-serif;
padding: 8px 15px;
background: #73D68A;
color: white;
border: none;
cursor: pointer;
transition: 0.3s;
}
/* Hover del botón */
.expand:hover {
background: #3f9e67;
}
/* Texto de copyright */
.footer-text {
font-size: 12px;
color: #333;
}
@media (max-width: 1340px) {
.header{
height: 100%;
}
.menu{
height: 100%;
flex-wrap: nowrap;
}
.menu button{
margin:2px;
}
#submapaContainer button{
margin:0;
}
}
@media (max-width: 600px) {
.header{
height: 100%;
}
.header h2{
font-size: 1.2rem;
}
.header p{
font-size: 0.9rem;
}
.menu{
height: 100%;
flex-wrap: nowrap;
}
.menu button{
margin: 2px;
width: 90%;
}
.menu h3{
font-size: 0.9rem;
}
}
@media (max-width: 450px) {
.menu{
margin-left: 2px;
margin-right: 2px;
}
.header{
margin-left: 2px;
margin-right: 2px;
}
}
</style>
</head>
<body>
<!-- Bloque con el título y la descripción -->
<div class="header">
<h2>Composición del parque de vehículos y su antigüedad, y del censo de conductores (2023)</h2>
<p>Explotación gráfica de la base de datos de la DGT "Información sobre la composición del parque de vehículos y su antigüedad, y del censo de conductores. Datos consolidados."</p>
</div>
<!-- Menú con los botones para seleccionar el mapa, nivel y submapa -->
<div class="menu">
<!-- Botones para seleccionar el mapa -->
<div>
<h3>Seleccionar Mapa</h3>
<button id="mapa-motorizacion" onclick="actualizarMapa('motorizacion')">Motorización</button>
<button id="mapa-antiguedad" onclick="actualizarMapa('antiguedad')">Antigüedad</button>
<button id="mapa-composicion" onclick="actualizarMapa('composicion')">Composición</button>
<button id="mapa-vehiculos" onclick="actualizarMapa('vehiculos')">Vehículos</button>
<button id="mapa-distintivos" onclick="actualizarMapa('distintivos')">Distintivos</button>
</div>
<!-- Botones para seleccionar el nivel administrativo -->
<div>
<h3>Seleccionar Nivel Administrativo</h3>
<button id="nivel-ccaa" onclick="actualizarNivel('ccaa')">Comunidad Autónoma</button>
<button id="nivel-prov" onclick="actualizarNivel('prov')">Provincia</button>
<button id="nivel-muni" onclick="actualizarNivel('muni')">Municipio</button>
</div>
<!-- Botones para seleccionar el submapa -->
<div id="submapaContainer">
<h3>Seleccionar Submapa</h3>
<!-- Los submapas se cargarán dinámicamente aquí -->
</div>
</div>
<div class="container">
<iframe id="mapaFrame" src=""></iframe>
<button class="expand" onclick="expandirMapa()">🔍 Expandir</button>
<div class="footer-text">
© BC3 Low Carbon department (2025). Reproduction requires citation as specified <a href="https://github.com/bc3LC/mapsTE/blob/main/README.md" target="_blank">here</a>.
</div>
</div>
<script>
let tipoMapa = 'motorizacion'; // Mapa predeterminado
let nivelAdministrativo = 'ccaa'; // Nivel predeterminado
let submapaSeleccionado = 'camiones'; // Submapa predeterminado
// Función que actualiza la URL del mapa y recarga el iframe
function cargarMapa() {
const url = obtenerUrlMapa();
document.getElementById("mapaFrame").src = url; // Recargar el mapa al cambiar cualquier sección
actualizarBotones(); // Actualizar el estilo de los botones
}
// Función para obtener la URL del mapa dependiendo de las selecciones
function obtenerUrlMapa() {
const baseUrl = "https://bc3lc.github.io/mapsTE/mapas_dinamicos/";
if (tipoMapa === 'motorizacion') {
if (submapaSeleccionado === 'turismos') {
return `${baseUrl}map_${nivelAdministrativo}_parque_turismos_pc.html`;
}
if (submapaSeleccionado === 'furgonetas') {
return `${baseUrl}map_${nivelAdministrativo}_parque_furgonetas_pc.html`;
}
if (submapaSeleccionado === 'ciclomotores') {
return `${baseUrl}map_${nivelAdministrativo}_parque_ciclomotores_pc.html`;
}
if (submapaSeleccionado === 'motocicletas') {
return `${baseUrl}map_${nivelAdministrativo}_parque_motocicletas_pc.html`;
}
if (submapaSeleccionado === 'camiones') {
return `${baseUrl}map_${nivelAdministrativo}_parque_camiones_pc.html`;
}
if (submapaSeleccionado === 'total') {
return `${baseUrl}map_${nivelAdministrativo}_parque_pc.html`;
}
if (submapaSeleccionado === 'conductores') {
return `${baseUrl}map_${nivelAdministrativo}_censo_pc.html`;
}
}
if (tipoMapa === 'antiguedad') {
if (submapaSeleccionado === 'turismos') {
return `${baseUrl}map_${nivelAdministrativo}_antiguedad_turismos.html`;
}
if (submapaSeleccionado === 'furgonetas') {
return `${baseUrl}map_${nivelAdministrativo}_antiguedad_furgonetas.html`;
}
if (submapaSeleccionado === 'ciclomotores') {
return `${baseUrl}map_${nivelAdministrativo}_antiguedad_ciclomotores.html`;
}
if (submapaSeleccionado === 'motocicletas') {
return `${baseUrl}map_${nivelAdministrativo}_antiguedad_motocicletas.html`;
}
if (submapaSeleccionado === 'camiones') {
return `${baseUrl}map_${nivelAdministrativo}_antiguedad_camiones.html`;
}
if (submapaSeleccionado === 'total') {
return `${baseUrl}map_${nivelAdministrativo}_antiguedad_tot.html`;
}
}
if (tipoMapa === 'composicion') {
if (submapaSeleccionado === 'turismos') {
return `${baseUrl}map_${nivelAdministrativo}_pct_turismos.html`;
}
if (submapaSeleccionado === 'furgonetas') {
return `${baseUrl}map_${nivelAdministrativo}_pct_furgonetas.html`;
}
if (submapaSeleccionado === 'ciclomotores') {
return `${baseUrl}map_${nivelAdministrativo}_pct_ciclomotores.html`;
}
if (submapaSeleccionado === 'motocicletas') {
return `${baseUrl}map_${nivelAdministrativo}_pct_motocicletas.html`;
}
if (submapaSeleccionado === 'camiones') {
return `${baseUrl}map_${nivelAdministrativo}_pct_camiones.html`;
}
}
if (tipoMapa === 'vehiculos') {
if (submapaSeleccionado === 'Total (sin ITV)') {
return `${baseUrl}map_${nivelAdministrativo}_pct_vehiculos_sin_ITV.html`;
}
if (submapaSeleccionado === 'Turismos (sin ITV)') {
return `${baseUrl}map_${nivelAdministrativo}_pct_ITV_turismos.html`;
}
if (submapaSeleccionado === 'Moto. (sin ITV)') {
return `${baseUrl}map_${nivelAdministrativo}_pct_ITV_motocicletas.html`;
}
if (submapaSeleccionado === 'Turismos (15-25a)') {
return `${baseUrl}map_${nivelAdministrativo}_pct_turismos_15_mas.html`;
}
if (submapaSeleccionado === 'Furgo. (15-25a)') {
return `${baseUrl}map_${nivelAdministrativo}_pct_furgonetas_15_mas.html`;
}
if (submapaSeleccionado === 'Camiones (15-25a)') {
return `${baseUrl}map_${nivelAdministrativo}_pct_camiones_15_mas.html`;
}
}
if (tipoMapa === 'distintivos') {
if (submapaSeleccionado === 'ECO+0') {
return `${baseUrl}map_${nivelAdministrativo}_distintivo_ECO_0.html`;
}
if (submapaSeleccionado === 'eco') {
return `${baseUrl}map_${nivelAdministrativo}_distintivo_ECO.html`;
}
if (submapaSeleccionado === '0') {
return `${baseUrl}map_${nivelAdministrativo}_distintivo_0.html`;
}
if (submapaSeleccionado === 'b') {
return `${baseUrl}map_${nivelAdministrativo}_distintivo_B.html`;
}
if (submapaSeleccionado === 'c') {
return `${baseUrl}map_${nivelAdministrativo}_distintivo_C.html`;
}
if (submapaSeleccionado === 'sin') {
return `${baseUrl}map_${nivelAdministrativo}_sin_distintivo.html`;
}
}
return ''; // Si no se encuentra un mapa válido
}
// Función para manejar la selección de un tipo de mapa
function actualizarMapa(tipo) {
tipoMapa = tipo; // Actualizamos el tipo de mapa
actualizarSubmapa(); // Actualizar submapas
cargarMapa(); // Recargar el mapa
}
// Función para manejar la selección de un nivel administrativo
function actualizarNivel(nivel) {
nivelAdministrativo = nivel; // Actualizamos el nivel administrativo
actualizarSubmapa(); // Actualizar submapas según el tipo de mapa y nivel
cargarMapa(); // Recargar el mapa
}
// Actualizar los submapas disponibles según el tipo de mapa seleccionado
function actualizarSubmapa() {
const submapaContainer = document.getElementById("submapaContainer");
submapaContainer.innerHTML = '<h3>Seleccionar Submapa</h3>'; // Reiniciar contenido de submapa
let submapas = [];
// Definir los submapas según el tipo de mapa
if (tipoMapa === 'motorizacion') {
submapas = ['turismos', 'furgonetas', 'ciclomotores', 'motocicletas', 'camiones', 'total', 'conductores'];
}
else if (tipoMapa === 'antiguedad') {
submapas = ['turismos', 'furgonetas', 'ciclomotores', 'motocicletas', 'camiones', 'total'];
}
else if (tipoMapa === 'composicion') {
submapas = ['turismos', 'furgonetas', 'ciclomotores', 'motocicletas', 'camiones'];
}
else if (tipoMapa === 'vehiculos') {
submapas = ['Total (sin ITV)', 'Turismos (sin ITV)', 'Moto. (sin ITV)', 'Turismos (15-25a)', 'Furgo. (15-25a)', 'Camiones (15-25a)'];
}
else if (tipoMapa === 'distintivos') {
submapas = ['ECO+0', 'eco', '0', 'b', 'c', 'sin'];
}
// Crear los botones de submapas
submapas.forEach(submapa => {
const btn = document.createElement("button");
btn.innerText = `${submapa.charAt(0).toUpperCase() + submapa.slice(1)}`;
btn.id = `submapa-${submapa}`;
btn.onclick = () => actualizarSubmapaSeleccionado(submapa); // Cada submapa también carga el mapa
submapaContainer.appendChild(btn);
});
}
// Actualizar el submapa seleccionado
function actualizarSubmapaSeleccionado(submapa) {
submapaSeleccionado = submapa;
cargarMapa(); // Recargar el mapa
}
// Función para expandir el mapa en una nueva pestaña
function expandirMapa() {
let iframe = document.getElementById("mapaFrame");
const url = iframe.src;
window.open(url, "_blank");
}
// Función para actualizar el estilo de los botones seleccionados
function actualizarBotones() {
// Restablecer todos los botones
document.querySelectorAll('.menu button').forEach(btn => {
btn.classList.remove('selected');
});
// Resaltar los botones activos
document.getElementById(`mapa-${tipoMapa}`).classList.add('selected');
document.getElementById(`nivel-${nivelAdministrativo}`).classList.add('selected');
document.getElementById(`submapa-${submapaSeleccionado}`).classList.add('selected');
}
// Cargar mapa inicial al cargar la página
window.onload = () => {
actualizarSubmapa(); // Cargar submapas según el mapa predeterminado
cargarMapa(); // Cargar el mapa inicial
};
</script>
</body>
</html>
Trigger redeploy Mon Oct 6 13:52:28 RDT 2025