Small Node module to use Google Geocoding API.
npm install google-geocoding-chekagoogle-geocoding
=====================
This module allows you to use Google geocoding
API to get the
coordinates of a specific location.
Installation
------------
npm install google-geocoding
Example
-------
``javascript``
var google_geocoding = require('google-geocoding');
google_geocoding.geocode('Place de Bretagne, Rennes, France', function(err, location) {
if( err ) {
console.log('Error: ' + err);
} else if( !location ) {
console.log('No result.');
} else {
console.log('Latitude: ' +location.lat + ' ; Longitude: ' +location.lng);
}
});