36 cloned->mResolution = mResolution;
37 cloned->mSkirtHeight = mSkirtHeight;
38 cloned->updateGenerator();
55 if ( mHeightMapGenerator )
56 return mHeightMapGenerator->heightAt( x, y );
64 QDomElement elemExtent = elem.ownerDocument().createElement( QStringLiteral(
"extent" ) );
65 elemExtent.setAttribute( QStringLiteral(
"xmin" ), QString::number( r.
xMinimum() ) );
66 elemExtent.setAttribute( QStringLiteral(
"xmax" ), QString::number( r.
xMaximum() ) );
67 elemExtent.setAttribute( QStringLiteral(
"ymin" ), QString::number( r.
yMinimum() ) );
68 elemExtent.setAttribute( QStringLiteral(
"ymax" ), QString::number( r.
yMaximum() ) );
69 elem.appendChild( elemExtent );
71 elem.setAttribute( QStringLiteral(
"resolution" ), mResolution );
72 elem.setAttribute( QStringLiteral(
"skirt-height" ), mSkirtHeight );
79 mResolution = elem.attribute( QStringLiteral(
"resolution" ) ).toInt();
80 mSkirtHeight = elem.attribute( QStringLiteral(
"skirt-height" ) ).toFloat();
82 const QDomElement elemExtent = elem.firstChildElement( QStringLiteral(
"extent" ) );
83 const double xmin = elemExtent.attribute( QStringLiteral(
"xmin" ) ).toDouble();
84 const double xmax = elemExtent.attribute( QStringLiteral(
"xmax" ) ).toDouble();
85 const double ymin = elemExtent.attribute( QStringLiteral(
"ymin" ) ).toDouble();
86 const double ymax = elemExtent.attribute( QStringLiteral(
"ymax" ) ).toDouble();
96 mTransformContext = context;
109void QgsOnlineTerrainGenerator::updateGenerator()
121 mHeightMapGenerator.reset(
new QgsDemHeightMapGenerator(
nullptr,
mTerrainTilingScheme, mResolution, mTransformContext ) );
This class represents a coordinate reference system (CRS).
Contains information about the context in which a coordinate transform is executed.
void setExtent(const QgsRectangle &extent) override
sets the extent of the terrain in terrain's CRS
void setCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets CRS of the terrain.
float heightAt(double x, double y, const Qgs3DRenderContext &context) const override
Returns height at (x,y) in map's CRS.
QgsTerrainGenerator * clone() const override SIP_FACTORY
Makes a copy of the current instance.
~QgsOnlineTerrainGenerator() override
QgsOnlineTerrainGenerator()
void writeXml(QDomElement &elem) const override
Write terrain generator's configuration to XML.
QgsCoordinateReferenceSystem crs() const override
Returns CRS of the terrain.
QgsRectangle rootChunkExtent() const override
extent of the terrain's root chunk in terrain's CRS
Type type() const override
What texture generator implementation is this.
void readXml(const QDomElement &elem) override
Read terrain generator's configuration from XML.
QgsChunkLoader * createChunkLoader(QgsChunkNode *node) const override SIP_FACTORY
A rectangle specified with double values.
double xMinimum() const
Returns the x minimum value (left side of rectangle).
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
double xMaximum() const
Returns the x maximum value (right side of rectangle).
bool isNull() const
Test if the rectangle is null (holding no spatial information).
double yMaximum() const
Returns the y maximum value (top side of rectangle).
Type
Enumeration of the available terrain generators.
@ Online
Terrain is built from downloaded tiles with digital elevation model.
QgsTilingScheme mTerrainTilingScheme
Tiling scheme of the terrain.
virtual QgsRectangle extent() const
extent of the terrain in terrain's CRS, might be non-square and smaller than rootChunkExtent()
QgsTerrainEntity * mTerrain
virtual void setTerrain(QgsTerrainEntity *t)
Sets terrain entity for the generator (does not transfer ownership)
QgsRectangle tileToExtent(int x, int y, int z) const
Returns map coordinates of the extent of a tile.
const QgsCoordinateReferenceSystem & crs