--- trunk/thuban/Extensions/wms/parser.py 2004/04/13 17:17:40 2169 +++ trunk/thuban/Extensions/wms/parser.py 2004/04/13 17:21:19 2170 @@ -458,6 +458,10 @@ if srs in pivot['bbox']: return pivot['bbox'][srs] + # No matching BBox found, let's see if it was EPSG:4326 + if srs == '4326': + return self.getLayerLatLonBBox(name) + return None