-
Notifications
You must be signed in to change notification settings - Fork 0
/
prueba.html
35 lines (33 loc) · 1.09 KB
/
prueba.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mapa Mundial de la NASA</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<style>
/* Estilos para que el mapa ocupe toda la página */
body, html {
height: 100%;
margin: 0;
}
#map {
height: 100%; /* El mapa ocupará el 100% de la altura */
width: 100%; /* El mapa ocupará el 100% del ancho */
}
</style>
</head>
<body>
<div id="map"></div>
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script>
// Inicializa el mapa
const map = L.map('map').setView([20, 0], 2); // Centro del mapa y nivel de zoom
// Capa de mapa de la NASA (Blue Marble)
L.tileLayer('https://tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png', {
maxZoom: 18,
attribution: 'Datos de <a href="https://www.nasa.gov/">NASA</a>'
}).addTo(map);
</script>
</body>
</html>