<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=us-ascii" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.19046"></HEAD>
<BODY>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial>hi,</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial>if you declare your map without options, then OL takes the 
default (see Map.js):</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial>&nbsp;&nbsp;&nbsp; projection: "EPSG:4326",&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp; units: 'degrees',<BR>&nbsp;&nbsp;&nbsp; maxResolution: 
1.40625,<BR>&nbsp;&nbsp;&nbsp; maxExtent: new 
OpenLayers.Bounds(-180,-90,180,90),<BR></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial>But it seems, when you declare a projection in your baselayer, 
then this projection overwrites the map projection&nbsp;and is used for the SRS 
parameter of the WMS request. But the maxExtent are still the default 
ones.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial>You should use map options to overwrite the 
default.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial></FONT></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial>&nbsp;&nbsp;&nbsp; //set always mapOptions, if you use a 
projection other than EPSG:4326<BR>&nbsp;&nbsp;&nbsp; mapOptions = 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; projection: new 
OpenLayers.Projection("EPSG:28992"),<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
units: "m",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; numZoomLevels: 
18,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; maxResolution: 
5,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; maxExtent: new 
OpenLayers.Bounds(131110,447700,131830,448310)<BR>&nbsp;&nbsp;&nbsp; 
};<BR>&nbsp;&nbsp;&nbsp; map = new OpenLayers.Map('map', 
mapOptions);<BR></FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011><FONT color=#0000ff 
size=2 face=Arial>Arnd</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=661583321-22042011></SPAN>&nbsp;</DIV>
<DIV dir=ltr align=left>
<HR tabIndex=-1>
</DIV>
<DIV dir=ltr align=left><FONT size=2 face=Tahoma><B>Von:</B> 
openlayers-users-bounces@lists.osgeo.org 
[mailto:openlayers-users-bounces@lists.osgeo.org] <B>Im Auftrag von 
</B>InterRob<BR><B>Gesendet:</B> Donnerstag, 21. April 2011 23:37<BR><B>An:</B> 
openlayers-users@lists.osgeo.org<BR><B>Betreff:</B> [OpenLayers-Users] 
WMS-layer: BBOX and SRS not being detected<BR></FONT><BR></DIV>
<DIV></DIV>Dear list,
<DIV><BR></DIV>
<DIV>Today I set up a MapServer WMS service. The service seems to work just 
fine, as I tested it with QGIS. Even the SRS is recognized automatically: 
EPSG:28992 (Dutch CS).</DIV>
<DIV>At the bottom of this message, I copy/pasted the 
GetCapabilites-response.</DIV>
<DIV><BR></DIV>
<DIV>The bit of JavaScript used to load the OpenLayers control + map + layer, is 
classical:</DIV>
<DIV><BR></DIV>
<DIV>============</DIV>
<DIV>
<DIV><BR></DIV>
<DIV>&nbsp;var map, layer;</DIV>
<DIV>&nbsp;&nbsp;function init(){</DIV>
<DIV>&nbsp;&nbsp; &nbsp;map = new OpenLayers.Map( 'map' );</DIV>
<DIV>&nbsp;&nbsp; &nbsp;layer = new OpenLayers.Layer.WMS( "OpenLayers 
WMS",&nbsp;"<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;</A>", 
{&nbsp;layers :&nbsp;'pgn_verwachting' }, { units : 'm', projection : new 
OpenLayers.Projection("EPSG:28992"), singleTile : true, buffer : 
0,&nbsp;ratio&nbsp;: 1&nbsp;}&nbsp;);</DIV></DIV>
<DIV><BR></DIV>
<DIV>============</DIV>
<DIV><BR></DIV>
<DIV>In my browser, OpenLayers does load nicely (zoom and pan tools become 
available in the upper right corner of an empty map-div) and then does the 
following GET to fetch that single tile:</DIV>
<DIV><A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;LAYERS=pgn_verwachting&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;STYLES=&amp;FORMAT=image%2Fjpeg&amp;SRS=EPSG%3A28992&amp;BBOX=-281.25,-210.9375,281.25,210.9375&amp;WIDTH=800&amp;HEIGHT=600">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;LAYERS=pgn_verwachting&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;STYLES=&amp;FORMAT=image%2Fjpeg&amp;SRS=EPSG%3A28992&amp;BBOX=-281.25,-210.9375,281.25,210.9375&amp;WIDTH=800&amp;HEIGHT=600</A></DIV>
<DIV><BR></DIV>
<DIV>I don't see how I can get the BBOX parameter right... What am I missing? 
When I edit the above URL, it works just fine, obviously...</DIV>
<DIV><BR></DIV>
<DIV>And shouldn't the SRS be detected automatically as well?</DIV>
<DIV><BR></DIV>
<DIV>Hints are much appreciated!</DIV>
<DIV><BR></DIV>
<DIV>Kind regards,</DIV>
<DIV><BR></DIV>
<DIV><BR></DIV>
<DIV>Rob</DIV>
<DIV><BR></DIV>
<DIV><BR></DIV>
<DIV><BR></DIV>
<DIV>=============== GetCapabilities response ======================</DIV>
<DIV>&lt;?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?&gt;</DIV>
<DIV>
<DIV>&lt;!DOCTYPE WMT_MS_Capabilities SYSTEM "<A 
href="http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd">http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd</A>"</DIV>
<DIV>&nbsp;[</DIV>
<DIV>&nbsp;&lt;!ELEMENT VendorSpecificCapabilities EMPTY&gt;</DIV>
<DIV>&nbsp;]&gt; &nbsp;&lt;!-- end of DOCTYPE declaration --&gt;</DIV>
<DIV><BR></DIV>
<DIV>&lt;WMT_MS_Capabilities version="1.1.1"&gt;</DIV>
<DIV><BR></DIV>
<DIV>&lt;!-- MapServer version 5.6.6 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG 
OUTPUT=WBMP OUTPUT=SVG SUPPORTS=PROJ SUPPORTS=AGG SUPPORTS=FREETYPE 
SUPPORTS=ICONV SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER 
SUPPORTS=WFS_CLIENT SUPPORTS=FASTCGI SUPPORTS=THREADS SUPPORTS=GEOS INPUT=EPPL7 
INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --&gt;</DIV>
<DIV><BR></DIV>
<DIV>&lt;Service&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;Name&gt;OGC:WMS&lt;/Name&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;Title&gt;Beleidskaart_Binnenstad&lt;/Title&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;OnlineResource xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;ContactInformation&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;/ContactInformation&gt;</DIV>
<DIV>&lt;/Service&gt;</DIV>
<DIV><BR></DIV>
<DIV>&lt;Capability&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;Request&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;GetCapabilities&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; 
&nbsp;&lt;Format&gt;application/vnd.ogc.wms_xml&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Get&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Get&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Post&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Post&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;/DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;/GetCapabilities&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;GetMap&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/gif&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/png&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/png; 
mode=24bit&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/jpeg&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; 
&nbsp;&lt;Format&gt;image/vnd.wap.wbmp&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/tiff&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/svg+xml&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Get&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Get&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Post&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Post&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;/DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;/GetMap&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;GetFeatureInfo&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;text/plain&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; 
&nbsp;&lt;Format&gt;application/vnd.ogc.gml&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Get&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Get&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Post&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Post&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;/DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;/GetFeatureInfo&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;DescribeLayer&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;text/xml&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Get&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Get&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Post&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Post&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;/DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;/DescribeLayer&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;GetLegendGraphic&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/gif&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/png&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/png; 
mode=24bit&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;image/jpeg&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; 
&nbsp;&lt;Format&gt;image/vnd.wap.wbmp&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Get&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Get&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Post&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Post&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;/DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;/GetLegendGraphic&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;GetStyles&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;Format&gt;text/xml&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Get&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Get&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;Post&gt;&lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp</A>;"/&gt;&lt;/Post&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/HTTP&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp;&lt;/DCPType&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;/GetStyles&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;/Request&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;Exception&gt;</DIV>
<DIV>&nbsp;&nbsp; 
&nbsp;&lt;Format&gt;application/vnd.ogc.se_xml&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; 
&nbsp;&lt;Format&gt;application/vnd.ogc.se_inimage&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; 
&nbsp;&lt;Format&gt;application/vnd.ogc.se_blank&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;/Exception&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;VendorSpecificCapabilities /&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;UserDefinedSymbolization SupportSLD="1" UserLayer="0" 
UserStyle="1" RemoteWFS="0"/&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;Layer&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;Name&gt;Beleidskaart_Binnenstad&lt;/Name&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;Title&gt;Beleidskaart_Binnenstad&lt;/Title&gt;</DIV>
<DIV>&nbsp;&nbsp; 
&nbsp;&lt;Abstract&gt;Beleidskaart_Binnenstad&lt;/Abstract&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;SRS&gt;EPSG:28992&lt;/SRS&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;LatLonBoundingBox minx="5.03953" miny="52.0181" 
maxx="5.05006" maxy="52.0236" /&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;BoundingBox SRS="EPSG:28992"</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;minx="131110" 
miny="447700" maxx="131830" maxy="448310" /&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;Layer queryable="0" opaque="0" 
cascaded="0"&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; 
&nbsp;&lt;Name&gt;pgn_verwachting&lt;/Name&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; 
&nbsp;&lt;Title&gt;pgn_verwachting&lt;/Title&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;LatLonBoundingBox minx="5.04025" 
miny="52.0182" maxx="5.04993" maxy="52.0236" /&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;BoundingBox SRS="EPSG:28992"</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp;minx="131160" miny="447707" maxx="131821" maxy="448305" /&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;Style&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp;&lt;Name&gt;default&lt;/Name&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; 
&nbsp;&lt;Title&gt;default&lt;/Title&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;LegendURL width="147" 
height="41"&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
&lt;Format&gt;image/png&lt;/Format&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;OnlineResource 
xmlns:xlink="<A 
href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</A>" 
xlink:type="simple" xlink:href="<A 
href="http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp;version=1.1.1&amp;amp;service=WMS&amp;amp;request=GetLegendGraphic&amp;amp;layer=pgn_verwachting&amp;amp;format=image/png&amp;amp;STYLE=default">http://localhost/mapserv?map=/var/www/geo/binnenstad_wms.map&amp;amp;version=1.1.1&amp;amp;service=WMS&amp;amp;request=GetLegendGraphic&amp;amp;layer=pgn_verwachting&amp;amp;format=image/png&amp;amp;STYLE=default</A>"/&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;/LegendURL&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&lt;/Style&gt;</DIV>
<DIV>&nbsp;&nbsp; &nbsp;&lt;/Layer&gt;</DIV>
<DIV>&nbsp;&nbsp;&lt;/Layer&gt;</DIV>
<DIV>&lt;/Capability&gt;</DIV>
<DIV>&lt;/WMT_MS_Capabilities&gt;</DIV></DIV>
<DIV><BR></DIV></BODY></HTML>