mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-03 00:05:24 -04:00
troopa's style
This commit is contained in:
parent
d197fd5d6f
commit
a42e09ff44
@ -656,12 +656,8 @@ QgsRectangle QgsWmsRenderContext::mapExtent() const
|
||||
throw QgsBadRequestException( QgsServiceException::QGIS_InvalidParameterValue,
|
||||
mParameters[QgsWmsParameter::BBOX] );
|
||||
}
|
||||
const double extentWidth = extent.width();
|
||||
const double extentHeight = extent.height();
|
||||
const int width = mapWidth();
|
||||
const int height = mapHeight();
|
||||
const double resolutionX = extentWidth / width;
|
||||
const double resolutionY = extentHeight / height;
|
||||
const double resolutionX = extent.width() / mapWidth();
|
||||
const double resolutionY = extent.height() / mapHeight();
|
||||
const int tBuffer = mFlags & UseTileBuffer ? tileBuffer() : 0;
|
||||
const double xMin = extent.xMinimum() - tBuffer * resolutionX;
|
||||
const double yMin = extent.yMinimum() - tBuffer * resolutionY;
|
||||
|
Loading…
x
Reference in New Issue
Block a user