QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
|
Go to the documentation of this file.
37 , mExtentLayer( qgis::make_unique<
QgsVectorLayer >( QStringLiteral(
"Polygon?crs=EPSG:4326" ), tr(
"Overview" ), QStringLiteral(
"memory" ),
QgsVectorLayer::LayerOptions( map && map->layout() && map->layout()->project() ? map->layout()->project()->transformContext() :
QgsCoordinateTransformContext() ) ) )
39 createDefaultFrameSymbol();
44 void QgsLayoutItemMapOverview::createDefaultFrameSymbol()
47 properties.insert( QStringLiteral(
"color" ), QStringLiteral(
"255,0,0,75" ) );
48 properties.insert( QStringLiteral(
"style" ), QStringLiteral(
"solid" ) );
49 properties.insert( QStringLiteral(
"style_border" ), QStringLiteral(
"no" ) );
67 if ( !overviewFrameMap )
74 if ( overviewFrameMap->
crs() !=
97 QPolygonF intersectExtent = thisExtent.intersected( otherExtent );
100 double dotsPerMM = painter->device()->logicalDpiX() / 25.4;
111 painter->setCompositionMode( mBlendMode );
112 painter->translate(
mMap->mXOffset,
mMap->mYOffset );
113 painter->scale( 1 / dotsPerMM, 1 / dotsPerMM );
115 mFrameSymbol->startRender( context );
119 QTransform mapTransform;
120 QPolygonF thisRectPoly = QPolygonF( QRectF( 0, 0, dotsPerMM *
mMap->rect().width(), dotsPerMM *
mMap->rect().height() ) );
123 thisRectPoly.pop_back();
124 thisExtent.pop_back();
127 QTransform::quadToQuad( thisExtent, thisRectPoly, mapTransform );
128 QPolygonF intersectPolygon;
129 intersectPolygon = mapTransform.map( intersectExtent );
131 QVector<QPolygonF> rings;
135 mFrameSymbol->renderPolygon( intersectPolygon, &rings,
nullptr, context );
141 QPolygonF outerPolygon;
142 outerPolygon << QPointF( 0, 0 )
143 << QPointF(
mMap->rect().width() * dotsPerMM, 0 )
144 << QPointF(
mMap->rect().width() * dotsPerMM,
mMap->rect().height() * dotsPerMM )
145 << QPointF( 0,
mMap->rect().height() * dotsPerMM )
149 rings.append( intersectPolygon );
150 mFrameSymbol->renderPolygon( outerPolygon, &rings,
nullptr, context );
153 mFrameSymbol->stopRender( context );
164 QDomElement overviewFrameElem = doc.createElement( QStringLiteral(
"ComposerMapOverview" ) );
166 overviewFrameElem.setAttribute( QStringLiteral(
"frameMap" ), mFrameMap ? mFrameMap ->uuid() : QString() );
168 overviewFrameElem.setAttribute( QStringLiteral(
"inverted" ), mInverted );
169 overviewFrameElem.setAttribute( QStringLiteral(
"centered" ), mCentered );
172 overviewFrameElem.appendChild( frameStyleElem );
175 elem.appendChild( overviewFrameElem );
182 if ( itemElem.isNull() )
189 mFrameMapUuid = itemElem.attribute( QStringLiteral(
"frameMap" ) );
193 mInverted = ( itemElem.attribute( QStringLiteral(
"inverted" ), QStringLiteral(
"0" ) ) != QLatin1String(
"0" ) );
194 mCentered = ( itemElem.attribute( QStringLiteral(
"centered" ), QStringLiteral(
"0" ) ) != QLatin1String(
"0" ) );
196 QDomElement frameStyleElem = itemElem.firstChildElement( QStringLiteral(
"symbol" ) );
197 if ( !frameStyleElem.isNull() )
199 mFrameSymbol.reset( QgsSymbolLayerUtils::loadSymbol<QgsFillSymbol>( frameStyleElem, context ) );
206 if ( !mFrameMapUuid.isEmpty() )
208 setLinkedMap( qobject_cast< QgsLayoutItemMap * >(
mLayout->itemByUuid( mFrameMapUuid,
true ) ) );
214 return mBlendMode != QPainter::CompositionMode_SourceOver;
219 if ( mFrameMap ==
map )
264 if ( !overviewFrameMap )
294 mExtentLayer->setBlendMode( mBlendMode );
297 mExtentLayer->dataProvider()->truncate();
298 mExtentLayer->setCrs(
mMap->
crs() );
302 intersectExtent = thisGeom.
difference( intersectExtent );
307 mExtentLayer->dataProvider()->addFeature( f );
309 return mExtentLayer.get();
314 return mExtentLayer.get();
331 mFrameSymbol.reset( symbol );
336 return mFrameSymbol.get();
341 return mFrameSymbol.get();
368 if (
mMap->
layout() && mCentered && mFrameMap )
375 center.
y() - extent.
height() / 2,
419 return qobject_cast<QgsLayoutItemMapOverview *>(
item );
425 return qobject_cast<QgsLayoutItemMapOverview *>(
item );
437 QList< QgsLayoutItemMapOverview * > list;
438 QList< QgsLayoutItemMapItem * >::const_iterator it =
mItems.begin();
439 for ( ; it !=
mItems.end(); ++it )
455 QDomNodeList mapOverviewNodeList = elem.elementsByTagName( QStringLiteral(
"ComposerMapOverview" ) );
456 for (
int i = 0; i < mapOverviewNodeList.size(); ++i )
458 QDomElement mapOverviewElem = mapOverviewNodeList.at( i ).toElement();
460 mapOverview->
readXml( mapOverviewElem, doc, context );
461 mItems.append( mapOverview );
469 QList<QgsMapLayer *> res = layers;
470 res.reserve( layers.count() +
mItems.count() );
492 auto pos = std::find( res.begin(), res.end(), stackLayer );
493 if ( pos == res.end() )
499 if ( pos == res.end() )
505 res.insert( pos, l );
QgsLayoutItemMapOverviewStack(QgsLayoutItemMap *map)
Constructor for QgsLayoutItemMapOverviewStack, attached to the specified map.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
const QgsLayout * layout() const
Returns the layout the object is attached to.
@ StackAboveMapLayer
Render above a specific map layer (see stackingLayer())
double height() const SIP_HOLDGIL
Returns the height of the rectangle.
bool readXml(const QDomElement &itemElem, const QDomDocument &doc, const QgsReadWriteContext &context) override
Sets the map item state from a DOM document, where element is the DOM node corresponding to a 'Layout...
void finalizeRestoreFromXml() override
Called after all pending items have been restored from XML.
OperationResult transform(const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection direction=QgsCoordinateTransform::ForwardTransform, bool transformZ=false) SIP_THROW(QgsCsException)
Transforms this geometry as described by the coordinate transform ct.
void setPainterFlagsUsingContext(QPainter *painter=nullptr) const
Sets relevant flags on a destination painter, using the flags and settings currently defined for the ...
Contains information about the context in which a coordinate transform is executed.
void addOverview(QgsLayoutItemMapOverview *overview)
Adds a new map overview to the stack and takes ownership of the overview.
@ StackBelowMapLayer
Render below a specific map layer (see stackingLayer())
void overviewExtentChanged()
Handles recentering of the map and redrawing of the map's overview.
BlendMode
Blending modes enum defining the available composition modes that can be used when rendering a layer.
The class is used as a container of context for various read/write operations on other objects.
A symbol entity for QgsStyle databases.
void moveOverviewDown(const QString &overviewId)
Moves an overview with matching overviewId down the stack, causing it to be rendered below other over...
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QgsPointXY center() const SIP_HOLDGIL
Returns the center point of the rectangle.
void extentChanged()
Emitted when the map's extent changes.
void setInverted(bool inverted)
Sets whether the overview frame is inverted, ie, whether the shaded area is drawn outside the extent ...
void setLinkedMap(QgsLayoutItemMap *map)
Sets the map to show the overview extent of.
const QgsLayoutItemMap * map() const
Returns the layout item map for the item.
Contains information about the context of a rendering operation.
An item which is drawn inside a QgsLayoutItemMap, e.g., a grid or map overview.
An interface for classes which can visit style entity (e.g.
A collection of map items which are drawn above the map content in a QgsLayoutItemMap.
void removeItems()
Clears the item stack and deletes all QgsLayoutItemMapItems contained by the stack.
@ StackBelowMap
Render below all map layers.
void setFrameSymbol(QgsFillSymbol *symbol)
Sets the fill symbol used for drawing the overview extent.
void draw(QPainter *painter) override
Draws the item on to a destination painter.
A rectangle specified with double values.
Contains information relating to the style entity currently being visited.
bool inverted() const
Returns whether the overview frame is inverted, ie, whether the shaded area is drawn outside the exte...
QgsGeometry intersection(const QgsGeometry &geometry) const
Returns a geometry representing the points shared by this geometry and other.
QgsVectorLayer * asMapLayer()
Returns a vector layer to render as part of the QgsLayoutItemMap render, containing a feature represe...
static QgsPainting::BlendMode getBlendModeEnum(QPainter::CompositionMode blendMode)
Returns a BlendMode corresponding to a QPainter::CompositionMode.
void setCentered(bool centered)
Sets whether the extent of the map is forced to center on the overview.
void setBlendMode(QPainter::CompositionMode mode)
Sets the blending mode used for drawing the overview.
static QgsRenderContext createRenderContextForLayout(QgsLayout *layout, QPainter *painter, double dpi=-1)
Creates a render context suitable for the specified layout and painter destination.
QgsLayoutItemMapOverview * overview(const QString &overviewId) const
Returns a reference to an overview with matching overviewId within the stack.
QList< QgsLayoutItemMapOverview * > asList() const
Returns a list of QgsLayoutItemMapOverviews contained by the stack.
bool mEnabled
True if item is to be displayed on map.
QPolygonF asQPolygonF() const SIP_HOLDGIL
Returns contents of the geometry as a QPolygonF.
QgsLayoutItemMap * linkedMap()
Returns the source map to show the overview extent of.
Custom exception class for Coordinate Reference System related exceptions.
QgsGeometry densifyByCount(int extraNodesPerSegment) const
Returns a copy of the geometry which has been densified by adding the specified number of extra nodes...
QgsMapLayer * stackingLayer() const
Returns the item's stacking layer, which specifies where the in the map's stack the item should be re...
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
QgsLayoutItemMap * mMap
Associated map.
bool centered() const
Returns whether the extent of the map is forced to center on the overview.
void removeItem(const QString &itemId)
Removes an item which matching itemId from the stack and deletes the corresponding QgsLayoutItemMapIt...
~QgsLayoutItemMapOverview() override
static QPainter::CompositionMode getCompositionMode(QgsPainting::BlendMode blendMode)
Returns a QPainter::CompositionMode corresponding to a BlendMode.
QgsRectangle extent() const
Returns the current map extent.
void invalidateCache() override
virtual bool readXml(const QDomElement &element, const QDomDocument &doc, const QgsReadWriteContext &context)
Sets the map item state from a DOM document, where element is the DOM node corresponding to a 'Layout...
Scoped object for saving and restoring a QPainter object's state.
@ StackBelowMapLabels
Render above all map layers, but below map labels.
bool accept(QgsStyleEntityVisitorInterface *visitor) const override
Accepts the specified style entity visitor, causing it to visit all style entities associated with th...
QgsCoordinateReferenceSystem crs() const
Returns coordinate reference system used for rendering the map.
QgsFillSymbol * frameSymbol()
Returns the fill symbol used for drawing the overview extent.
void moveItemDown(const QString &itemId)
Moves an item which matching itemId up the stack, causing it to be rendered above other items.
QgsLayoutItemMapOverview(const QString &name, QgsLayoutItemMap *map)
Constructor for QgsLayoutItemMapOverview.
A class to represent a 2D point.
An individual overview which is drawn above the map content in a QgsLayoutItemMap,...
void setForceVectorOutput(bool force)
Sets whether rendering operations should use vector operations instead of any faster raster shortcuts...
Layout graphical items for displaying a map.
QList< QgsLayoutItemMapItem * > mItems
QList< QgsMapLayer * > modifyMapLayerList(const QList< QgsMapLayer * > &layers)
Alters the list of map layers which will be rendered for the link map item, inserting temporary layer...
QMap< QString, QString > QgsStringMap
QgsMapLayer * mapLayer() override
Returns the internal map layer used by this item, if available.
StackingPosition stackingPosition() const
Returns the item's stacking position, which specifies where the in the map's stack the item should be...
void connectSignals()
Reconnects signals for overview map, so that overview correctly follows changes to source map's exten...
QPointer< QgsLayout > mLayout
A geometry is the spatial representation of a feature.
@ StackAboveMapLabels
Render above all map layers and labels.
Represents a vector layer which manages a vector based data sets.
double width() const SIP_HOLDGIL
Returns the width of the rectangle.
void mapRotationChanged(double newRotation)
Emitted when the map's rotation changes.
Base class for all map layer types.
virtual bool writeXml(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const
Stores map item state in a DOM element, where element is the DOM element corresponding to a 'LayoutMa...
void removeOverview(const QString &overviewId)
Removes an overview with matching overviewId from the stack and deletes the corresponding QgsLayoutIt...
A fill symbol type, for rendering Polygon and MultiPolygon geometries.
virtual bool visit(const QgsStyleEntityVisitorInterface::StyleLeaf &entity)
Called when the visitor will visit a style entity.
void setExpressionContext(const QgsExpressionContext &context)
Sets the expression context.
void moveItemUp(const QString &itemId)
Moves an item which matching itemId up the stack, causing it to be rendered above other items.
bool readXml(const QDomElement &elem, const QDomDocument &doc, const QgsReadWriteContext &context) override
Sets the item stack's state from a DOM document, where element is a DOM node corresponding to a 'Layo...
static QgsGeometry fromQPolygonF(const QPolygonF &polygon)
Construct geometry from a QPolygonF.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
QgsLayoutItemMapItem * item(int index) const
Returns a reference to the item at the specified index within the stack.
static QgsFillSymbol * createSimple(const QgsStringMap &properties)
Create a fill symbol with one symbol layer: SimpleFill with specified properties.
void addItem(QgsLayoutItemMapItem *item)
Adds a new map item to the stack and takes ownership of the item.
QPainter::CompositionMode blendMode() const
Retrieves the blending mode used for drawing the overview.
bool usesAdvancedEffects() const override
Returns true if the item is drawn using advanced effects, such as blend modes.
void setExtent(const QgsRectangle &extent)
Sets a new extent for the map.
static QDomElement saveSymbol(const QString &symbolName, const QgsSymbol *symbol, QDomDocument &doc, const QgsReadWriteContext &context)
Writes a symbol definition to XML.
QgsGeometry difference(const QgsGeometry &geometry) const
Returns a geometry representing the points making up this geometry that do not make up other.
QgsLayoutItemMapOverview & operator[](int index)
Returns a reference to an overview at the specified index within the stack.
bool writeXml(QDomElement &elem, QDomDocument &doc, const QgsReadWriteContext &context) const override
Stores map item state in a DOM element, where element is the DOM element corresponding to a 'LayoutMa...
QPolygonF visibleExtentPolygon() const
Returns a polygon representing the current visible map extent, considering map extents and rotation.
void moveOverviewUp(const QString &overviewId)
Moves an overview with matching overviewId up the stack, causing it to be rendered above other overvi...