batch-geocoder
v0.2.5
Published
Node.js Batch Geocoder for the Google Maps API
Downloads
14
Readme
node-batch-geocoder
Node.js Batch Geocoder for the Google Maps API
Example
var Geocoder = require("../lib/batch-geocoder"),
geocoder = new Geocoder("./geocode-cache.csv");
geocoder.on("finish", function(collection){
console.log(collection);
});
geocoder.on("status", function(status){
console.log(completed.current + '/' + completed.total);
});
geocoder.find([
"Broadway, NYC",
"Champs-Élysées, Paris",
"Brandenburger Tor, Berlin",
"Omotesandō, Tokyo",
...
]);