Hi,<br><br>I get a lot of questions from people trying to remove the  default PanZoom map control. I recommend this solution:<br><br>The following controls are given to the map by default:<br><ul><li><a href="http://dev.openlayers.org/docs/files/OpenLayers/Control/Navigation-js.html#OpenLayers.Control.Navigation" target="_blank">OpenLayers.Control.Navigation</a></li>


<li><a href="http://dev.openlayers.org/docs/files/OpenLayers/Control/PanZoom-js.html#OpenLayers.Control.PanZoom" target="_blank">OpenLayers.Control.PanZoom</a></li>
<li><a href="http://dev.openlayers.org/docs/files/OpenLayers/Control/ArgParser-js.html#OpenLayers.Control.ArgParser" target="_blank">OpenLayers.Control.ArgParser</a></li>
<li><a href="http://dev.openlayers.org/docs/files/OpenLayers/Control/Attribution-js.html#OpenLayers.Control.Attribution" target="_blank">OpenLayers.Control.Attribution</a></li>
</ul>Instead of removing the PanZoom control, simply leave it out from the map options at construction:<br><br>map = new OpenLayers.Map(&#39;your_element_id&#39;, {<br>        controls: [<br>            new OpenLayers.Control.Navigation(),<br>


            new OpenLayers.Control.ArgParser(),<br>            new OpenLayers.Control.Attribution()<br>        ]<br>});<br><br>Jan<br>