Arjen,<br><br>This is what I use for British National Grid and it works fine.<br><br><br><div><span style="font-family: courier new,monospace;">&lt;script
type=&quot;text/javascript&quot;&gt;<br>var map;<br>function init() <br>{<br>var options =
{isBaseLayer:true,resolutions:[72,36,18,9.6,4.8,2.4,1.2,0.6,0.3,0.15,0.125],
maxExtent:new OpenLayers.Bounds(0,0,2000000,2000000),
maxResolution:&#39;auto&#39;, units:&#39;meters&#39;, projection:&#39;EPSG:27700&#39;,
controls:[]};
<br>map
= new OpenLayers.Map( $(&#39;map&#39;), options );<br>var layer0= new
OpenLayers.Layer.WMS(&#39;Mastermap&#39;,
&#39;<a href="http://somewhere/script.asp?%27,%7Blayers:%27topo_area,carto_text" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://somewhere/script.asp?&#39;,{layers:&#39;topo_area,carto_text</a>
&#39;, format:&#39;image/jpeg&#39;});<br><br>map.addLayers(layer0);
<br><br></span><span><span style="font-family: courier new,monospace;">map.setCenter(new OpenLayers.LonLat(543443,255213), 7);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">

}</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&lt;/script&gt;<br></span></span></div><br>cheers,<br><br>Tom<br><br><br><div><span class="gmail_quote">On 6/4/07, 
<b class="gmail_sendername">Arjen de Korte</b> &lt;<a href="mailto:arjendk@gmx.net">arjendk@gmx.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi all,<br><br>I&#39;m trying to view a WMS running on my local computer with OpenLayers. The WMS-layers are in Dutch RD coordinates (EPSG:28992). I&#39;m using the code below. However, I get a JavaScript error &quot;bounds has no properties&quot; on the line
<br>&quot;map.setCenter&quot;.<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;script src=&quot;<a href="http://openlayers.org/api/OpenLayers.js">http://openlayers.org/api/OpenLayers.js</a>&quot;&gt;&lt;/script&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;script type=&quot;text/javascript&quot;&gt;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;function init(){<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;map = new OpenLayers.Map(&quot;map&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ maxExtent: new OpenLayers.Bounds(0, 300000, 300000, 600000),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;maxResolution: &quot;auto&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;units: &#39;meters&#39;,
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;projection: &quot;EPSG:28992&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;});<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// It works with this one:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//map = new OpenLayers.Map( $(&#39;map&#39;) );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//layer = new OpenLayers.Layer.WMS
( &quot;OpenLayers WMS&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;<a href="http://labs.metacarta.com/wms/vmap0">http://labs.metacarta.com/wms/vmap0</a>&quot;, {layers: &#39;basic&#39;} );<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//See: <a href="http://trac.openlayers.org/wiki/FrequentlyAskedQuestions#Projections">
http://trac.openlayers.org/wiki/FrequentlyAskedQuestions#Projections</a><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;layer = new OpenLayers.Layer.WMS( &quot;VMap0&quot;, &quot;<a href="http://localhost/mapserver/mapserv.exe?map=c:/Inetpub/test/demo.map">
http://localhost/mapserver/mapserv.exe?map=c:/Inetpub/test/demo.map</a>&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ request: &#39;GetMap&#39;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;layers: &#39;water&#39;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;srs: &#39;EPSG:28992&#39;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;format: &#39;image/png&#39;,
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;transparent: true<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} );<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;map.addLayer(layer);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;map.addControl(new OpenLayers.Control.Permalink());<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// This doesn&#39;t work: &quot;JS error: bounds has no properties&quot;:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;map.setCenter(new OpenLayers.LonLat(lat, lon), zoom);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// This doesn&#39;t work either: &quot;JS error: bounds has no properties&quot;:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//map.zoomToMaxExtent();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// --&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/script&gt;<br><br>Does anyone have an idea how this can be solved? Can it be it has to do with the fact that I&#39;m trying to use the EPSG:28992 SRS? The basic example with the OpenLayers WMS (commented above) works fine.
<br><br>A similar problem has been posted earlier: <a href="http://openlayers.org/pipermail/users/2007-February/000695.html">http://openlayers.org/pipermail/users/2007-February/000695.html</a>, but I found no responses.<br>
<br>Best regards,<br>Arjen.<br>_______________________________________________<br>Users mailing list<br><a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br><a href="http://openlayers.org/mailman/listinfo/users">
http://openlayers.org/mailman/listinfo/users</a><br></blockquote></div><br>