Convert GPS latitude/longitude pairs to US zip codes.
npm install Gps2zip
Convert GPS latitude longitude pairs to a US zip code.
npm install gps2zip
var gps = require('gps2zip');
var latitude = 30.2669;
var longitude = 97.7428;
gps.gps2zip(latitude, longitude);
// returns 78701
node tests/basic.js
You can get full street addresses using the Google Maps Reverse Geocoding API:
http://code.google.com/apis/maps/documentation/javascript/geocoding.html#ReverseGeocoding
Zip codes from The Zip Code Database Project
http://sourceforge.net/projects/zips/