Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been looking for how to determine coordinates of the points which consist a polygon(feature) in OpenLayers.

Let's say I have created a polygon like the one in this example. I need to know the points which consist the polygon, so I can save them somewhere.

I bet it is an easy one. I just couldn't find anything, probably I don't know what I should search for.

Thanks in advance.

share|improve this question

1 Answer

up vote 7 down vote accepted

Found it finally!

vectors.features[0].geometry.getVertices()
share|improve this answer
Where did you find the vectors object? Or where can I find it in the example. – Bart Burg Apr 8 at 21:13
Nevermind, I combined it with this example: dev.openlayers.org/releases/OpenLayers-2.12/examples/… – Bart Burg Apr 8 at 21:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.