OpenLayers, by default, zooms in when a user double clicks a map.
What is the best way to disable this behavior?
|
OpenLayers, by default, zooms in when a user double clicks a map. What is the best way to disable this behavior?
| |||
|
feedback
|
|
The zoom on double click feature is apparently a functionality in the A small and very tired example:
I remember that the Navigation control is automatically added to the map if no controls are set during the initialization of the map. So you might have to add the Navigation control your self. Hope it helps =) | |||
|
feedback
|
|
The above answer is correct, but you will have to explicitly add this control to the map to override the default Navigation control, ie,
The following controls are added by default to an OpenLayers.Map: OpenLayers.Control.Navigation, OpenLayers.Control.PanZoom, OpenLayers.Control.ArgParser, OpenLayers.Control.Attribution So another option if you want to turn all these default behaviors off, is to send an empty array in the options parameter of the open layers constructor, see link text for more details. | |||
|
feedback
|