Estoy creando un mapa utilizando el siguiente código:
map = new OpenLayers.Map({
div: "map"
});
Luego cargo una capa de polígonos geojson y añado dos controles
var highlightCtrl = new OpenLayers.Control.SelectFeature(geojson_layer, {
hover: true,
highlightOnly: true,
renderIntent: "temporary",
eventListeners: {
beforefeaturehighlighted: unreport,
featurehighlighted: report,
featureunhighlighted: unreport
}
});
selectCtrl = new OpenLayers.Control.SelectFeature(geojson_layer,
{clickout: true ,
renderIntent: "select",
onSelect: selected,
onUnselect: function(e){console.log('unselected)}
});
map.addControl(highlightCtrl);
map.addControl(selectCtrl);
highlightCtrl.activate();
selectCtrl.activate();
Esta capa cubre todo el div del mapa, y ahora ya no puedo desplazar el mapa. ¿Existe alguna forma de habilitar el desplazamiento cuando tengo una capa con controles que cubren el mapa base?