How to find the zip code corresponding to a latitude / longitude?
What tools are available to fetch this information?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Google provides Geocoding/Reverse geocoding API which allow you to get address information from lat/lng.
i.e.)
http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=false
In the result, you can find the postal code like this:

More detail, please read the official document.
https://developers.google.com/maps/documentation/geocoding/