I have an android app that finds your current location but I need to figure out which zip codes are within, say, 20 miles of the current location. What would be the best way to find this information? Is there a public API or web service? I can give latitude/longitude or zip code as input.
Share
I would start by using the Haversine formula. Use the result you get from this to find the zipcode relative to that radius.