Light promisified Google Maps API geocoder loader and abstraction layer. For the API documentation see https://developers.google.com/maps/documentation/javascript/geocoding
https://mjbp.github.io/storm-geocoder
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);
});
});
Your own Google Maps API key will be required
defaults = {
key: null
}
npm run test
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.
Google Maps JS API
Import storm-load(https://mjbp.github.io/storm-load)
MIT