I have venues in the database that I store with their latitude and longitude.
I also have the logged in user's latitude and longitude.
I'm developing a function that will allow them to find venues within any given measurement, say 20 miles.
Is it possible to find the outermost lat and long of say 20 miles from the user's lat and long and then somehow write a query to find venues within the circle of distance in MySQL?
Thanks.