Openlayers 3 Es
Openlayers 3 Es
Openlayers 3 Es
#openlayers
-3
Tabla de contenido
Acerca de 1
Observaciones 2
Examples 2
Instalación o configuración 2
configurando OL-3 2
Examples 4
Inicie el objeto de mapa y agregue la capa vectorial al mapa y la fuente como vectorSource 4
Creditos 6
Acerca de
You can share this PDF with anyone you feel could benefit from it, downloaded the latest version
from: openlayers-3
It is an unofficial and free openlayers-3 ebook created for educational purposes. All the content is
extracted from Stack Overflow Documentation, which is written by many hardworking individuals at
Stack Overflow. It is neither affiliated with Stack Overflow nor official openlayers-3.
The content is released under Creative Commons BY-SA, and the list of contributors to each
chapter are provided in the credits section at the end of this book. Images may be copyright of
their respective owners unless otherwise specified. All trademarks and registered trademarks are
the property of their respective company owners.
Use the content presented in this book at your own risk; it is not guaranteed to be correct nor
accurate, please send your feedback and corrections to info@zzzprojects.com
https://riptutorial.com/es/home 1
Capítulo 1: Comenzando con los openlayers-
3
Observaciones
Esta sección proporciona una descripción general de qué es openlayers-3 y por qué un
desarrollador puede querer usarlo.
También debe mencionar cualquier tema grande dentro de openlayers-3, y vincular a los temas
relacionados. Dado que la Documentación para openlayers-3 es nueva, es posible que deba crear
versiones iniciales de esos temas relacionados.
Examples
Instalación o configuración
OpenLayers 3 o como se lo conoce, OL-3 es una biblioteca de Javascript para mapeo web, por lo
que para poder usarlo, deberá agregarlo en su html:
También puede descargar OL-3 desde el sitio oficial www.openlayers.org y llamar a los archivos
en el html cambiando el src y el href
configurando OL-3
<script src="http://openlayers.org/en/v3.17.1/build/ol.js"></script>
<html>
<head>
<title>Getting started</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.17.1/ol.css"
type="text/css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.17.1/ol.js"></script>
</head>
<body>
<div id="map" class="map"></div>
<script>
var baseLayer= new ol.layer.Tile({ //a Tile layer is a the background layer for the map
// here we choose an OpenStreetMap base layer
source: new ol.source.OSM({
https://riptutorial.com/es/home 2
url: 'https://a.tile.openstreetmap.org/{z}/{x}/{y}.png'
})
});
https://riptutorial.com/es/home 3
Capítulo 2: Dibuja los diferentes tipos de
geometría.
Examples
Dibuja una geometría multilínea
var points=[];
for (i = 0; i < 10; i++) {
var xx = Math.random() * (xmax - xmin) + xmin;
var yy = Math.random() * (ymax - ymin) + ymin;
points.push(ol.proj.transform([xx,yy],'EPSG:4326', 'EPSG:3857'));
}
https://riptutorial.com/es/home 4
Crea una característica y agrega geometría como una cosa
vectorSource.addFeature( featurething );
Nota: es muy importante poner los sistemas de proyección de origen y destino adecuados
https://riptutorial.com/es/home 5
Creditos
S.
Capítulos Contributors
No
https://riptutorial.com/es/home 6