Currently, I am in the process of creating a feature where users can enter their postcode or address information and be presented with markers that are nearby.
All of my markers are stored in a database. Initially, I planned to retrieve results from MySQL within a specified range.
For example, if my latitude/longitude is 1.500 by 2.100, the database would return rows that have latitudes between 1.450 and 1.550 and longitudes between 2.050 and 2.150.
While this method would suffice, I'm curious to know if there is an existing solution within the Google Maps API that can accomplish this task more efficiently than my current approach?