1.0.0 • Published 5 years ago

coordinates2address v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

coordinates2address

Turn coordinates easily to street address with google maps api

npm i --save coordinates2address

// google maps apikey const apiKey = '*';

getLocation(40.730610, -73.935242, {apiKey, address: true})

.then((response) => {

 // This will return 38-40 Railroad Ave, Long Island City, NY 11101, USA
console.log(response)

});