geocode-many

1.1.1 • Public • Published

geocodemany

Given an array of objects and a transform into a geocodable string, geocode them if possible. Works in both node and the browser.

example

var data = [{
    city: 'Chester',
    state: 'New Jersey'
}, {
    city: 'Washington',
    state: 'DC'
}];
 
function transform(obj) {
    return obj.city + '' + obj.state;
}
 
function progress() {
    console.log(arguments);
}
 
function done() {
    console.log(arguments);
}
 
var geocoder = geocodemany('ACCESSTOKEN');
 
geocoder(data, transform, progress, done);

Readme

Keywords

Package Sidebar

Install

npm i geocode-many

Weekly Downloads

1

Version

1.1.1

License

BSD

Last publish

Collaborators

  • tristen
  • tmcw