4

I have a polygon shape loaded in QGIS, and I'd like to display every vertex' coordinates on the map in a label or popup next to it, how can I do that? Sample image

MrXsquared
  • 34,292
  • 21
  • 67
  • 117
HumbleBee
  • 143
  • 7

1 Answers1

5

First extract your vertices with "Extract Vertices" from processing toolbox:

enter image description here

Then open label properties of this Vertex layer and add an expression like round($x,8) || ' ' || round($y,8) as label.

enter image description here

MrXsquared
  • 34,292
  • 21
  • 67
  • 117