mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-03 00:02:25 -05:00
[server][bugfix] Fixes OGC tests on getmap bbox
This commit is contained in:
parent
d97a51b532
commit
e67a191f16
@ -875,6 +875,12 @@ namespace QgsWms
|
||||
}
|
||||
}
|
||||
|
||||
if ( d[0] > d[2] || d[1] > d[3] )
|
||||
{
|
||||
*error = true;
|
||||
return extent;
|
||||
}
|
||||
|
||||
extent = QgsRectangle( d[0], d[1], d[2], d[3] );
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user