I have a database with about 20,000 coordinations. I created an android application using the Google Map API. Now, I want to fetch all the coordinations in the range of my current view of the map view (showing them as markers). And, when I move the map from one place to another, load some new coordination for the current new view automatically.
The database that I am using is (MySQL), and for each point in a row, I have two columns (longitude and Latitude) and some other columns to hold details about the point like name of the place, address ..etc.
What I have done by now:
I can load some coordination from the database and put them on the google map as markers. But, this is not what I want, I want the google map to specify a range of current view and bring all the GPS coordination in this range from the database.
I searched on the Internet, I could not find any useful resources.