-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviajes.html
71 lines (52 loc) · 2.55 KB
/
viajes.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name="author" content="Silvia Suárez Prendes" />
<meta name="description" content="Viajes" />
<meta name="keywords" content="Viajes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Viajes</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
<link rel="stylesheet" type="text/css" href="estilo/viajes.css" />
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="icon" href="multimedia/fotos/icono.jpg" />
<script src="js/viajes.js"></script>
</head>
<body>
<!-- Datos con el contenido que aparece en el navegador -->
<header>
<h1>Escritorio virtual</h1>
<nav>
<a href="index.html" accesskey="I" tabindex="1">Inicio</a>
<a href="sobremi.html" accesskey="S" tabindex="2">Sobre mí</a>
<a href="noticias.html" accesskey="N" tabindex="3">Noticias</a>
<a href="agenda.html" accesskey="A" tabindex="4">Agenda</a>
<a href="meteorologia.html" accesskey="M" tabindex="5">Meteorología</a>
<a href="viajes.html" accesskey="V" tabindex="6">Viajes</a>
<a href="juegos.html" accesskey="J" tabindex="7">Juegos</a>
<a href="ficheroApi.html" accesskey="M" tabindex="8">Mapa</a>
</nav>
</header>
<h2>Viajes</h2>
<main></main>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB_VTPfMRljUs0W9lJzBQpMt3VyepKDdYo&callback=mapaDinamicoGoogle.initMap">
</script>
<button onclick=viajes.mostrarInfo()>Mostrar mapa estático</button>
<p>
<label for="file">Seleccione el archivo KML para mostrar ubicaciones en el mapa</label>
<input id="file" type="file" data-element='kml' accept=".kml" onchange="viajes.cargarArchivos(this.files)" multiple="">
</p>
<p>
<label for="upload">Seleccione el archivo XML que desea procesar</label>
<input id="upload" data-element='xml' type="file" accept=".xml" name="upload" onchange="viajes.informacionArchivos()">
</p>
<section>
</section>
</body>
</html>