Tagged Questions

3
votes
3answers
501 views

Describe relative angles between points (like driving directions)

I have a list of points with x, y coordinates. I know how to get the distance between points with sqrt(pow($x2 - $x1, 2) + pow($y2 - $y1, 2)) and the angle between points with atan2(y1 - y2, x1 - ...
1
vote
1answer
2k views

Calculate driving directions using PHP?

For my application I need a server to calculate driving directions. The Google Maps API was designed for clientside use only, with a Javascript and Flash API. Is there any way I can run their API's ...