everythinglocation

Wrapper for www.everythinglocation.com API


Keywords
address, verification, cloud, everythinglocation
License
ISC
Install
npm install everythinglocation@1.2.1

Documentation

Everything Location API wrapper

Easily integrate the EverythingLocation API into your Node.js app

Very simple to use wrapper for www.everythinglocation.com

Not in NPM yet, still work in progress.

If you want to manually include it as a dependency:

"everythinglocation": "git://github.com/timothykibler/elwrapper.git"

Then include it

var el = require('everythinglocation');

Verify an address:

var params = {
  lqtkey: 'keystring',
  Address: 'address on one line',
  Country: 'ISO or country name'
};

el.verify(params, function(result) {
  //do something with result
});

Supported fields: http://www2.everythinglocation.com/support/api/#!/post-address-verify Better simplification of fields etc. to be added soon.