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);

/geocode-many/

    Package Sidebar

    Install

    npm i geocode-many

    Weekly Downloads

    3

    Version

    1.1.1

    License

    BSD

    Last publish

    Collaborators

    • tristen
    • tmcw