I have a list of ~ 10000 places (latitude and longitude) and I have a central point (latitude and longitude). I want using the Google map API, find all the places (within 100000), which are at a distance X (given by me) from the given center. I want to believe that the google map API gives you this information.
IMPORTANT CLARIFICATION: I know that google map tells you the distance between 2 points, but I do not want to use a cycle that goes through 10000 places checking distance because that would take a long time.
How do I resolve this? Google map API does not have a function to do this?