๐ŸŒ
Tool-Online
tool-online.com โ€บ en โ€บ map-tools.php
Google Map Tools and Coordinate Converter
Map-tools software is a set of tools associated with Google Maps and also a coordinate converter.
๐ŸŒ
GPX to Google Maps Converter
gpx2maps.com
GPX to Google Maps Converter | Free GPX Route Converter
Free GPX to Google Maps converter - Transform GPS tracks into interactive routes in seconds. Perfect for hiking, cycling & motorcycling. No signup required. Try it now!
People also ask

Is this GPX to Google Maps converter free?
Absolutely! Our GPX to Google Maps converter offers free conversions with no hidden fees. Free users can convert 1 file per month, while paid users get unlimited conversions for a one-time fee.
๐ŸŒ
gpx2maps.com
gpx2maps.com
GPX to Google Maps Converter | Free GPX Route Converter
Is the Maps to GPX converter free?
Free users get 1 conversion per month. For unlimited conversions in both directions, our Pro Lifetime plan is a one-time $29.99 payment.
๐ŸŒ
gpx2maps.com
gpx2maps.com โ€บ maps-to-gpx
Maps to GPX Converter | Export Google Maps Routes to GPX โ€” Free
Can I convert Google Maps to GPX with GPX2Maps?
Yes. Paste any Google Maps directions URL, shortened link, or place URL into our Mapsโ†’GPX converter on the homepage and download the resulting .gpx file instantly.
๐ŸŒ
gpx2maps.com
gpx2maps.com โ€บ maps-to-gpx
Maps to GPX Converter | Export Google Maps Routes to GPX โ€” Free
๐ŸŒ
GPX to Google Maps Converter
gpx2maps.com โ€บ maps-to-gpx
Maps to GPX Converter | Export Google Maps Routes to GPX โ€” Free
Both formats work. Head to the Maps โ†’ GPX tab on our homepage, paste the URL, pick your travel mode (drive, bike, walk, transit), and toggle route options like avoid highways, tolls, or ferries. Hit Convert and the .gpx file downloads instantly.
๐ŸŒ
Marnoto
maps.marnoto.com โ€บ en โ€บ coordinate-converter
GEOGRAPHIC COORDINATE CONVERTER | Marnoto.com
GEOGRAPHIC COORDINATE CONVERTER http://maps.marnoto.com/en/coordinate-converter/ Use this tool to convert Google Maps decimal coordinates to GPS coordinates in degrees, minutes and seconds and vice versa.
๐ŸŒ
MyGeodata
mygeodata.cloud
MyGeodata Converter | MyGeodata Cloud
The Converter allows to convert data to formats suitable for Google Earth.
๐ŸŒ
Maps to GPX
mapstogpx.com
Maps to GPX Converter
This tool accepts a link to pre-made Google Directions and converts them to a GPX file.
๐ŸŒ
Coordinates Converter
coordinates-converter.com โ€บ en โ€บ google-maps-utm
Enter UTM Coordinates on Google Maps
If you know the approximate location of the coordinates, you can use a little trick to determine the coordinate system. Open our Coordinate Converter with a map and enter the address or click on the map. You will then receive the coordinates for this point in all notations. Google Maps allows ...
Find elsewhere
๐ŸŒ
YouTube
youtube.com โ€บ watch
How To Quickly Convert GPS Coordinates From Google Maps To Your GPS - YouTube
Here's a question we got recently from one of our Insiders: How do you get the GPS coordinates from Google Maps to your GPS machine?Well, getting the GPS coo...
Published ย  April 27, 2020
๐ŸŒ
Maps Converter
mapsconverter.com
Google Maps to Apple Maps Converter โ€” Transfer Saved Places Free
Move all your Google Maps saved places to Apple Maps in minutes. Upload your Google Takeout file or paste any Google Maps link. Free, private โ€” everything runs in your browser.
๐ŸŒ
GPS Coordinates
gps-coordinates.net โ€บ gps-coordinates-converter
GPS coordinate converter
Easiest app to convert GPS coordinates (latitude and longitude) between decimal and Degrees/Minutes/Seconds gps coordinates format.
๐ŸŒ
GMaps To GPX
gmapstogpx.com
Convert Google Maps to GPX | GMaps To GPX
Convert Google Maps directions to GPX. Use on Android, iPhone, Pokemon GO, or any GPS app. Paste a Maps URL and download GPX.
๐ŸŒ
Boulter
boulter.com โ€บ gps
GPS Coordinate Converter, Maps and Info
Decimal Degrees (WGS84) LatitudeLongitude ยท Degrees, Minutes & Seconds LatitudeLongitude
๐ŸŒ
Google Maps Platform
mapsplatform.google.com โ€บ google maps platform โ€บ maps products
Custom Map Tools & Products - Google Maps Platform
Convert addresses to geographic coordinates or the reverse. ... Return the location of a device without relying on GPS, using geospatial data from cell towers and WiFi nodes. ... Build factual and up-to-date Gen-AI powered experiences by grounding your LLM responses in Google Maps data.
๐ŸŒ
GPS Visualizer
gpsvisualizer.com โ€บ convert_input
GPS Visualizer: Convert GPS files to plain text or GPX
GPS Visualizer's free conversion utility can create GPX files or plain text from GPS data in any format.
๐ŸŒ
Maptogpx
maptogpx.com
Google Maps Route to GPX Converter
Convert Google Maps directions URLs into GPX files. Supports driving, cycling, and walking routes. Free, no sign-up needed.
Top answer
1 of 4
1

You need to unshorten the url link, and the result will be and url with coordinates embedded in it. In your example:

https://www.google.com/maps/place/Eiffel+Tower/@48.8583701,2.2922926,17z/data=!3m1!4b1!4m2!3m1!1s0x0:0x8ddca9ee380ef7e0?hl=en

See this topic on how to unshorten using Python: How can I unshorten a URL?

Then you need to parse it for the coordinates, for example by searching for the @ character. Assume your long url is called longurl. In Python, you can do

import re
temp = re.search('@([0-9]?[0-9]\.[0-9]*),([0-9]?[0-9]\.[0-9]*)', longurl, re.DOTALL)
latitude  = temp.groups()[0]
longitude = temp.groups()[1]

(Then you can further convert it from DD to minutes, seconds, if you need that.)

2 of 4
1

I wrote this test class to get coordinates from a Google Maps share link in C# (.NET 8):

public class Test : IDisposable
{
    private readonly HttpClient _httpClient = new();

    public void Dispose()
    {
        _httpClient?.Dispose();
        GC.SuppressFinalize(this);
    }

    public async Task<string?> TryGetCoordinatesFromGoogleMapsShareLinkAsync(string shareLink, CancellationToken cancellationToken = default)
    {
        using var response = await _httpClient.GetAsync(shareLink, cancellationToken);
        var expandedUrl = response.RequestMessage?.RequestUri?.ToString();

        if (!string.IsNullOrEmpty(expandedUrl))
        {
            return ExtractCoordinatesFromExpandedGoogleMapsUrl(expandedUrl);
        }

        return null;
    }

    private static string? ExtractCoordinatesFromExpandedGoogleMapsUrl(string url)
    {
        var atIndex = url.IndexOf('@');
        string? coordinates;

        if (atIndex != -1)
        {
            var coordinatesPart = url[(atIndex + 1)..];
            var parts = coordinatesPart.Split(',');

            if (parts.Length >= 2)
            {
                coordinates = $"{parts[0]},{parts[1]}";
                return coordinates;
            }
        }
        else
        {
            var parts = url.Split('/')[5].Split(',');

            if (parts.Length >= 2)
            {
                coordinates = $"{parts[0]},{parts[1]}";
                return coordinates;
            }
        }

        return null;
    }
}
๐ŸŒ
GPS Visualizer
gpsvisualizer.com
GPS Visualizer
GPS Visualizer is a free utility that creates customizable maps and profiles from GPS data (tracklogs & waypoints), addresses, or coordinates.
๐ŸŒ
Online Maps to GPX
onlinemapstogpx.com
Convert Google Maps to GPX - Free Online Route Converter
Simply copy the Google Maps URL of your route (either a shortened goo.gl link or full maps.google.com URL), paste it into the input field above, select your preferred format (GPX or KMZ), and click "Convert Route".