Câu trả lời:
Bạn có thể sử dụng đoạn mã sau trong Bảng điều khiển Python để tạo một nút trên thanh công cụ để bật nhãn cho tất cả các lớp vectơ:
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)
Mã được dựa trên câu hỏi: Làm thế nào để bật / tắt tất cả các nhãn của tất cả các lớp trong QGIS .
Bạn có thể sử dụng plugin Deac activate / Active Label có nút để bật / tắt nhãn cho tất cả các lớp: