-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapa.html
27 lines (27 loc) · 975 Bytes
/
mapa.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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="author" content="Samuel Fernando Mesa Giraldo">
<meta name="description" content="Plantilla de Openlayers 3 para ser usado con los servicios de IDECA de bogota">
<meta name="Keywords" content="WMTS, TMS, OL3, IDECA, Bogota">
<title>Visor Bogota</title>
<link rel="stylesheet" href="lib/ol.css" type="text/css">
<link rel="stylesheet" href="lib/ol3-layerswitcher.css" type="text/css">
<style>
.map {
height: 800px;
width: 600px;
}
</style>
<script src="lib/ol.js" type="text/javascript"></script>
<script src="lib/ol3-layerswitcher.js" type="text/javascript"></script>
</head>
<body>
<h1>Ejemplo de conexion de servicios IDECA en Openlayers 3</h1>
<div id="map" class="map"></div>
<h3>Autor: Samuel Mesa samuelmesa [at] linuxmail.org</h3>
<h3>Fecha: 10 de Julio 2015</h3>
<script type="text/javascript" src="lib/app.js"></script>
</body>
</html>