Ok I have a restaurant list. All the restaurants have a adresses, and I would like to do so you can write a location in a input field, and then it will show the restaurant list with the closest first and then descending.. example:
Searching for: Valby (city in Denmark)
Restaurant Ankrara - 2 km from Valby
Restaurant JuicyFood - 3 km from Valby
Restaurant FoodJuicy - 5 km from Valby
Restaurant Blabla - 22 km from Valby
After research and question here on SO, I found out I need to use geocoding and google maps api.
Okay, so I got to the step where I have converted what you entered (the city Valby in above example), into geocode (lat/lng coordinates).
And then i have the adresses in the coordinates to.
How can i count the kilometers between the City and the restaurant address in coordinates?
For the example, here is the cords of the city "Valby":
55.662133, 12.508028
And here is 3 restaurants addresses cords:
55.667029, 12.527715
55.6939821, 12.4934945
55.6696885, 12.3755492
(And how can i show them with closest/nearest first and then descending <- not required for accepted answer, I eventually make a new question for this)