storm-geocoder
v1.1.2
Published
Google Maps API geocoder loader and abstraction layer
Downloads
13
Maintainers
Readme
Storm Geocoder
Light promisified Google Maps API geocoder loader and abstraction layer. For the API documentation see https://developers.google.com/maps/documentation/javascript/geocoding
Example
https://mjbp.github.io/storm-geocoder
Usage
JS
npm install -S storm-geocoder
either using es6 import
import Geocoder from 'storm-geocoder';
Geocoder
.init({key: 'Your key'})
.then(geocoder => {
geocoder
.promise('EH6 7BG')
.then(res => {
console.log(res);
})
.catch(err => {
console.log(err);
});
})
.catch(err => {
console.log(err);
});
aynchronous browser loading (use the .standalone version in the /dist folder)
import Load from 'storm-load';
Load('/content/js/async/storm-geocoder.standalone.js')
.then(() => {
Geocoder
.init({key: 'Your key'})
.then(geocoder => {
geocoder
.promise('EH6 7BG')
.then(res => {
console.log(res);
})
.catch(err => {
console.log(err);
});
})
.catch(err => {
console.log(err);
});
});
Options
Your own Google Maps API key will be required
defaults = {
key: null
}
Tests
npm run test
Browser support
This is module has both es6 and es5 distributions. The es6 version should be used in a workflow that transpiles.
The es5 version depends unpon Object.assign, element.classList, and Promises so all evergreen browsers are supported out of the box, ie9+ is supported with polyfills. ie8+ will work with even more polyfils for Array functions and eventListeners.
Dependencies
Google Maps JS API
Import storm-load(https://mjbp.github.io/storm-load)
License
MIT