latlng-to-zip

Convert longitude and latitude to a zipcode

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
latlng-to-zip
0.0.24 years ago7 years agoMinified + gzip package size for latlng-to-zip in KB

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