-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrutas.html
60 lines (47 loc) · 1.72 KB
/
rutas.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="description" content="Practica Extraordinaria SEW">
<meta name="keywords" content="HTML,CSS">
<meta name="author" content="Moises Garcia Lopez">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rutas - Barcelona</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css">
<link rel="stylesheet" type="text/css" href="estilo/layout.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src='http://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.3.1/leaflet-omnivore.min.js'></script>
<script src="https://d3js.org/d3.v6.min.js"></script>
</head>
<body>
<header>
<nav>
<a href="index.html">Página principal</a>
<a href="gastronomia.html">Gastronomía</a>
<a href="rutas.html">Rutas</a>
<a href="meteorologia.html">Meteorología</a>
<a href="juego.html">Juego</a>
<a href="php/reservas.php">Reservas</a>
</nav>
<h1>Rutas Turísticas</h1>
</header>
<main>
<section>
<h2>Cargar rutas</h2>
<label for="file-input">
Añade un archivo XML de rutas para transformar en KML, mostrar mapa y altimetría
</label>
<input id="file-input" type="file" accept=".xml">
<button>Descargar KML de rutas</button>
</section>
<section>
<h2>Altimetría</h2>
<svg></svg>
</section>
<script src="xml/rutas.js"></script>
<script src="xml/altitudeChart.js"></script>
</main>
</body>
</html>