From a0e6dd7c7a75ef78793095d7790eb15fabfc8cde Mon Sep 17 00:00:00 2001 From: crschmidt Date: Sun, 20 Jan 2008 16:50:12 +0000 Subject: [PATCH] Thought that normal selection wasn't working. Turns out I had a local modification I'd forgotten about. take hover off to more closely resemble the boxes-vector example. git-svn-id: http://svn.openlayers.org/trunk/openlayers@5820 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- examples/boxes-vector.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/boxes-vector.html b/examples/boxes-vector.html index 71d1929b53..63877b9d89 100644 --- a/examples/boxes-vector.html +++ b/examples/boxes-vector.html @@ -35,7 +35,7 @@ map.addLayers([ol_wms, boxes]); map.addControl(new OpenLayers.Control.LayerSwitcher()); - var sf = new OpenLayers.Control.SelectFeature(boxes, {'hover': true }); + var sf = new OpenLayers.Control.SelectFeature(boxes); map.addControl(sf); sf.activate(); map.zoomToMaxExtent();