Hi,<br><br>I&#39;m adding a GML file in my map with the object OpenLayers.Layer.GML. I&#39;m trying to zoom to this layer extent at map&#39;s loading. I can do this if I know de bounding box coordinates with a postgis query.<br>

<br>My PHP code :<br><br>        var bounds = new OpenLayers.Bounds();<br>        bounds.extend((new OpenLayers.LonLat(&lt;?=$xmin?&gt;,&lt;?=$ymin?&gt;)).transform(wgs84, map.getProjectionObject()));<br>        bounds.extend((new OpenLayers.LonLat(&lt;?=$xmax?&gt;,&lt;?=$ymax?&gt;)).transform(wgs84, map.getProjectionObject()));<br>

        bounds.toBBOX();<br>        map.zoomToExtent(bounds);<br><br>But this requires a server call and I want my map to use only datas in the GML file and not to have to connect to a database.<br><br>I have seen that GML files includes bounded box informations like :<br>

<br>  &lt;gml:boundedBy&gt;<br>    &lt;gml:Box&gt;<br>      &lt;gml:coord&gt;&lt;gml:X&gt;1.473839004763629&lt;/gml:X&gt;&lt;gml:Y&gt;43.43941299999661&lt;/gml:Y&gt;&lt;/gml:coord&gt;<br>      &lt;gml:coord&gt;&lt;gml:X&gt;1.647671004707115&lt;/gml:X&gt;&lt;gml:Y&gt;43.58098800002078&lt;/gml:Y&gt;&lt;/gml:coord&gt;<br>

    &lt;/gml:Box&gt;<br>  &lt;/gml:boundedBy&gt;   <br><br>Is it possible the get the gml extent to be able to automaticaly zoom on it at loading ?<br><br>Thanks,<br>Christophe<br>