3

Is there a way to remove annotations from a QGIS project?

For example, by navigating to a folder and deleting them instead of going into the map canvas and deleting them there.

enter image description here

0

1 Answer 1

10

A very fast way to remove all the annotations from your project is to use a PyQGIS script in the QGIS python console.

the script is

manager = QgsProject.instance().annotationManager() for i in manager.annotations(): manager.removeAnnotation(i) 

This will remove all the annotations in a single action.

0

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.