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.
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.