What I am trying to do is display the area covered by someone. For example a search team walks through a field, a person could see roughly 50m either way. So I would want to display essentially a polygon with the width of 100m and the length of the path that has been walked. I would need to both display this graphically and in an area measurement.
The best idea I have to implement this is to create a line string and then create a polygon from that by somehow setting the points 90 degrees from the line of point A to point B. Something like this:
| |
| |
Point A +-----------------+ Point B
| |
| |
However, I have no idea how I would get an angle from the line in order to find the coordinates to create the polygon. Does anyone know of a way to do this?
I found the solution eventually. Basically you need to use
ol.geom.Polygon.fromCircle
. If you set the number of points to 2 it will give you a horizontal line which you can rotate to the heading direction.