google-map-url-to-coordinates
v1.0.4
Published
A simple Node.js script to extract coordinates from Google Maps URLs
Downloads
3
Maintainers
Readme
Google Map url to coordinate converter
use function urlToCoordinate(your_url) to get the latitude and longitude as json it must be a aync function.
Example
(async () => {
const coordinate = await urlToCoordinate("https://maps.app.goo.gl/2NvaTpiduGrD6EU56");
console.log(coordinate);
})(); 