-
Notifications
You must be signed in to change notification settings - Fork 0
/
05.html
26 lines (26 loc) · 900 Bytes
/
05.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Añadiendo capas de fondo</title>
</head>
<body>
<script src="//sitna.navarra.es/api/"></script>
<div id="mapa"></div>
<script>
const myMap = new SITNA.Map("mapa", {
// Establecemos cuatro capas para el fondo, por defecto la imagen satélite ofrecida por Mapbox
baseLayers: [
SITNA.Consts.layer.MAPBOX_SATELLITE,
SITNA.Consts.layer.MAPBOX_STREETS,
SITNA.Consts.layer.CARTO_LIGHT,
SITNA.Consts.layer.CARTO_DARK
],
// Establecemos el sistema de referencia de coordenadas (CRS)
crs: "EPSG:3857",
// Las coordenadas deben estar en EPSG:3857
initialExtent: [-8916022, 3179736, 9869141, 11789603]
});
</script>
</body>
</html>