right now, i have a nearly functional code.<br>This code is for zooming to a predetermined area.<br>the problem is that the map doesn&#39;t get redrawn when i use this script.<br>I found this script in the archive, and would like to know is there a line i have to add in order to get it to redraw or refresh the map.<br>
More importantly if this script is actually correct, any help is much appreciated.  <br><br>John<br><br>&lt;html&gt;<br>&lt;head&gt;<br>&lt;script language=&quot;javascript&quot;&gt;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;function AreaSelected()&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alert(document.myform.ViewArea.value);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; document.myform.target=&quot;&quot;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; document.myform.mode.value=&quot;browse&quot;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; document.myform.imgext.value = (document.myform.ViewArea.value);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; document.myform.submit();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; <br>&lt;/script&gt;<br>&lt;/head&gt;<br>&lt;body&gt;&nbsp; <br>&lt;form method =POST&nbsp; name=&quot;myform&quot;&gt;<br>&lt;select name=&quot;ViewArea&quot; onChange=&quot;AreaSelected();&quot;&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;option&gt;Zoom to Region&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &lt;option&gt;------------------------&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &lt;option value=&quot;5457203 487104 5451873 482304&quot;&gt;Indian Reserve 2&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &lt;option value=&quot;5435308 491431 5434498 490403&quot;&gt;Indian Reserve 4&lt;/option&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;option value=&quot;5425919 541907 5502970 444168&quot;&gt;Musqueam Statement Of Intent&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &lt;option value=&quot;5435189 475830 5457751 504449&quot;&gt;Richmond Boundary&lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &lt;option value=&quot;5448859 481843 5463269 500122&quot;&gt;Vancouver Boundary &lt;/option&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;option value=&quot;5432692 482228 5457268 515426&quot;&gt;North Arm Fraser River &lt;/option&gt;<br>&nbsp;&nbsp;&nbsp; &lt;/select&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;&lt;input name=&quot;mode&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; &lt;input type=&quot;hidden&quot; name=&quot;imgxy&quot; value=&quot;299.5 299.5&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp; &lt;input&nbsp; type=&quot;hidden&quot; name=&quot;imgext&quot; value=&quot;[mapext]&quot;&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp;&nbsp;&nbsp; &lt;/form&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;<br>