I have a json file with plenty GPS coordinates (lat,lng) which will be displayed as marker in Google Maps. Now I want to check whether the user is close to a marker - let's say 10 meters.
My approach was to simply compare the users current location (lat/lng) with my json array. For this I would have to calculate the actual radius for each marker which I find quite difficult to map to lat/lng.
Anyways, I'm not that familiar with Google Maps API and couldn't figure out myself whether there is already some function for this.
Thanks, Dennis