jQuery + OpenLayers
HTML
<script src="http://www.openlayers.org/api/OpenLayers.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css">
<html>
<head>
<title>Pestañas de jQuery en OpenLayers</title>
</head>
<body>
<div id="searchmap" style="width:512px; height:512px"></div>
</body>
</html>
JavaScript
var searchMap = new ol.Map({
target : 'searchmap',
view : new ol.View({
zoom : 2,
projection : 'EPSG:4326',
center : [ 0, 0 ]
})
});
var StamenLayerTerrain = new ol.layer.Tile({
source : new ol.source.Stamen({
layer : "terrain"
}),
type : 'base'
});
searchMap.addLayer(StamenLayerTerrain);
/*var georeferencedData =...