Makes using the Google Geocoding API easy to use.
npm install --save @qc/google-geocoding-service
or
yarn add @qc/google-geocoding-service
import GoogleGeocodingService from '@qc/google-geocoding-service';
const geocodingService = new GoogleGeocodingService({
apiKey: 'YOUR_API_KEY',
})
geocodingService.geocode('1600 Pennsylvan')
.then(results => {
console.dir(results);
});
Other Packages from QC
ISC