latlng-to-zip
v0.0.2
Published
Convert longitude and latitude to a zipcode
Downloads
136
Maintainers
Readme
latlng-to-zip
Convert longitude and latitude to a zipcode. Requires use of Google's Geocoding API
Installation
npm install latlng-to-zip
Getting Starting
const reverseGeocode = require('latlng-to-zip');
reverseGeocode({latitude, longitude}, key)
.then(zipcode => zipcode)
.catch(err => err);
Testing
npm test