maps_toolkit icon indicating copy to clipboard operation
maps_toolkit copied to clipboard

How to check distance from point to polygon (area)?

Open FetFrumos opened this issue 4 years ago • 0 comments

I have a polygon that consists of an array of points. I have a point that is outside this polygon. how can I find the closest distance between a point and a polygon?

I have one option so far: 1.Calculate the distance between each polygon point and the outer point 2. find the nearest point, find an adjacent one for it (line). 3. Calculate the distance between the line and the outside point(using distanceToLine).

but it seems complicated to me. maybe there is an easier solution?

FetFrumos avatar Sep 18 '21 07:09 FetFrumos