<span class="Apple-style-span" style>I am trying to load a basemap and layers into a 696x425 frame. The map won&#39;t appear in the center of the frame, it appears centered low and to the left. I can drag the map into the correct location, but I would prefer it just appear there. Any suggestions?<div>
 </div><div>my script:</div><div><br></div><div><div>      &lt;div style=&quot;width:696px; height: 425px; border: 1px solid;&quot; id=&quot;map&quot;&gt;&lt;/div&gt;</div><div>      &lt;script defer=&quot;defer&quot; type=&quot;text/javascript&quot;&gt;</div>
<div>        var options = {</div><div>            maxExtent: new OpenLayers.Bounds(0,0,1410,913),</div><div>            maxResolution: &quot;auto&quot;</div><div>        };</div><div>        var map = new OpenLayers.Map(&#39;map&#39;,options);</div>
<div>        var base = new OpenLayers.Layer.Image(&quot;Basemap&quot;,</div><div>             &quot;newestbasemap.gif&quot;,</div><div>             new OpenLayers.Bounds(0,0,1410,913),</div><div>             new OpenLayers.Size(1410,913),</div>
<div>             {isBaseLayer: true}</div><div>             );</div><div>        var ice = new OpenLayers.Layer.Image(&quot;Freezing Level&quot;,</div><div>             &quot;pt3.gif&quot;,</div><div>             new OpenLayers.Bounds(0,0,1410,913),</div>
<div>             new OpenLayers.Size(1410,913),</div><div>              {isBaseLayer: false,</div><div>               visibility: false,</div><div>               opacity: 0.80}</div><div>             );</div><div>        var wind = new OpenLayers.Layer.Image(&quot;Wind Speed&quot;,</div>
<div>             &quot;pt3windspd.gif&quot;,</div><div>             new OpenLayers.Bounds(0,0,1410,913),</div><div>             new OpenLayers.Size(1410,913),</div><div>              {isBaseLayer: false,</div><div>               visibility: false,</div>
<div>               opacity: 0.60}</div><div>             );</div><div>        var turb = new OpenLayers.Layer.Image(&quot;Turbulence&quot;,</div><div>             &quot;pt3turb.gif&quot;,</div><div>             new OpenLayers.Bounds(0,0,1410,913),</div>
<div>             new OpenLayers.Size(1410,913),</div><div>              {isBaseLayer: false,</div><div>               visibility: false,</div><div>               opacity: 0.60}</div><div>             );</div></div><div><div>
        map.addLayers([base, ice, wind, turb]);</div><div>        map.setCenter(new OpenLayers.LonLat(705,456));</div><div>        map.zoomToMaxExtent();</div><div>        map.addControl(new OpenLayers.Control.LayerSwitcher());</div>
<div><br></div><div>      &lt;/script&gt;</div></div></span>