I would like to use the Google maps static API to display a map with a path overlay indicating the border.
AFAICT static API does not support polygons, so I intend to get around this by drawing the border using paths.
To do this, I need to define points in order to draw lines (paths) between them; so I need an algorithm that returns the geographic location (i.e. WGS84 coordinates) of a given bearing and the distance from a known point.
Can anyone point me to such an algorithm. Preferably in C #, but other languages ββare acceptable?
source share