geocode-many

Given an array of objects and a transform into a geocodable string, geocode them if possible.

Usage no npm install needed!

<script type="module">
  import geocodeMany from 'https://cdn.skypack.dev/geocode-many';
</script>

README

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