Answers:
您可以在Python控制台中使用以下代码在工具栏上创建一个按钮,用于切换所有矢量层的标签:
action = QAction(QIcon(""), "Turn labels" + "\n" + "ON/OFF", iface.mainWindow())
action.setCheckable(True)
iface.addToolBarIcon(action)
def label_control():
for layer in QgsProject.instance().mapLayers().values():
if layer.type() == QgsMapLayer.VectorLayer:
if action.isChecked() == True:
layer.setLabelsEnabled(True)
else:
layer.setLabelsEnabled(False)
layer.triggerRepaint()
action.triggered.connect(label_control)
# Uncomment line below if you want to remove the icon yourself,
# otherwise it will be removed automatically when you restart QGIS
iface.removeToolBarIcon(action)
代码基于以下问题:如何在QGIS中打开/关闭所有图层的所有标签。
您可以使用停用/活动标签插件,该插件具有用于打开/关闭所有图层的按钮的按钮: