-
Notifications
You must be signed in to change notification settings - Fork 0
/
viajes.html
70 lines (58 loc) · 2.45 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name ="author" content ="David Gonzalez" />
<meta name ="description" content ="Viajes" />
<meta name ="keywords" content ="viajes" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<title>F1Desktop - 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" />
<link rel="icon" href="multimedia/imagenes/favicon.ico"/>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo="
crossorigin="anonymous"></script>
<script src="js/viajes.js"></script>
<link href="https://api.mapbox.com/mapbox-gl-js/v3.8.0/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v3.8.0/mapbox-gl.js"></script>
</head>
<body>
<!-- Datos con el contenidos que aparece en el navegador -->
<header>
<h1><a href="index.html">F1Desktop</a></h1>
<nav>
<a href="index.html">Index</a>
<a href="calendario.html">Calendario</a>
<a href="juegos.html">Juegos</a>
<a href="meteorologia.html">Meteorologia</a>
<a href="noticias.html">Noticias</a>
<a href="piloto.html">Piloto</a>
<a class="active" href="viajes.html">Viajes</a>
<a href="circuito.html">Circuito</a>
</nav>
</header>
<p>Estas en: <a href="index.html">Indice</a> >> Viajes</p>
<h2>Viajes</h2>
<script>
var viajes = new Viajes();
</script>
<section>
<input type="button" value="Obtener mapa estatico" onclick="viajes.getMapaEstatico();">
<input type="button" value="Obtener mapa dinamico" onclick="viajes.getMapaDinamico();">
</section>
<label>
<p>Mostrar XML:</p>
<input type="file" onchange="viajes.readInputFile(this.files);">
</label>
<label>
<p>Cargar ruta en formato Kml:</p>
<input type="file" onchange="viajes.cargarArchivosKML(this.files);" accept=".kml" multiple>
</label>
<!-- Lleva id para poder poner el mapa dinamico -->
<main id="map">
</main>
</body>
</html>