🌐
Tool-Online
tool-online.com › en › map-tools.php
Google Map Tools and Coordinate Converter
We can get mesurements (distance, ... h : ellipsoid height; Long : Longitude; Lat : Latitude; dms : Degree Minute Secondes. For GPS coordinates, select the WGS84 system....
🌐
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.
🌐
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 ...
🌐
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.
🌐
Salt Strong
saltstrong.com › home › articles › how to get gps coordinates from google maps to your gps machine
How To Get GPS Coordinates From Google Maps To Your GPS Machine
May 1, 2020 - When you click on a spot, Google Maps gives you the coordinates in DMS and DD, and as luck would have it, most GPS machines require coordinates in DMM. ... Enter the coordinates in any format into the website below to convert them to the other coordinates:
🌐
Coordinates Converter
coordinates-converter.com › en
Online converter to all coordinate systems | UTM, WGS.. | with map
UTM, UTMRF/MGRS, CH1903, Gauss-Krueger, GK, NAC, W3W and WGS as decimal, decimal minutes or in degrees, minutes and seconds. | Large map | Coordinates to address · Interessantes: Altimeter: How High Am I? Compass online · Google Maps & Google Earth: UTM Coordinates on Google Maps ·
🌐
Boulter
boulter.com › gps
GPS Coordinate Converter, Maps and Info
Decimal Degrees (WGS84) LatitudeLongitude · Degrees, Minutes & Seconds LatitudeLongitude
🌐
Google Support
support.google.com › maps › thread › 317313378 › gps-coordinates-format-conversion
GPS Coordinates format conversion - Google Maps Community
January 7, 2025 - Skip to main content · Google Maps Help · Sign in · Google Help · Help Center · Community · Google Maps · Terms of Service · Submit feedback · Send feedback on
🌐
Google Support
support.google.com › maps › answer › 18539
Search by latitude & longitude in Google Maps - Computer - Google Maps Help
On the map, right-click the place or area. A pop-up window appears. At the top, you can find your latitude and longitude in decimal format. To copy the coordinates, click on the latitude and longitude.
Find elsewhere
🌐
CoordinateMapper
coordinatemapper.com › resources › how-to-convert-coordinates-for-google-maps
How to Convert Coordinates for Google Maps
Convert coordinates instantly between latitude/longitude, UTM, MGRS and UK grid references. Paste any format, map it, and export as CSV, DXF or KML.
🌐
Netvicious
netvicious.com › gps
GPS Coordinate Converter and Maps
Convert and plot GPS coordinates, using UTM or combinations of degrees, minutes and seconds and see the position in Google Maps. Get the Altitude of a point and the distance between two points
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;
    }
}
🌐
Chrome Web Store
chromewebstore.google.com › detail › google-maps-coordinate-co › bepccpkaangcaemdmhadifefccidkgbe
Google Maps Coordinate Copier - Chrome Web Store
A Google Chrome extension that will copy the latitude and longitude coordinates from an embedded Google Map on the existing webpage.
🌐
Google Play
play.google.com › store › apps › details
GPS coordinate converter - Apps on Google Play
You can convert GPS coordinates into degrees, UTM, MGRS and address.
Rating: 4.5 ​ - ​ 2.38K votes
🌐
MapKmlTools
mapkmltools.com › home › google maps coordinate extractor (url to lat/long) - bulk supported
Google Maps Coordinate Extractor (URL to Lat/Long) - Bulk Supported | MapKmlTools
Extract Latitude and Longitude directly from Google Maps links. Supports bulk URLs, Maps shortlinks, Bing maps, and CSV/Excel parsing.
🌐
Google Play
play.google.com › store › apps › details
Geo: Convert GPS Coordinates - Apps on Google Play
• Latitude/longitude (decimal degrees) • Latitude/longitude (degrees-minutes-seconds) • UTM/UPS • MGRS • Plus Code (Open Location Code) • Digipin (India only) HELPFUL FOR • Converting coordinates when you don't have a network connection • Finding your current GPS coordinates and altitude • Marking points on a map • GPS navigation to a point • Researching imagery/maps for a single location using multiple apps • Converting coordinates when you don't know what format they are in • Using in split-screen alongside a map • Sharing coordinates as a QR code ★ Works offlin
Rating: 4.3 ​ - ​ 1.25K votes
🌐
Quora
quora.com › How-can-I-convert-my-Google-Maps-coordinates-latitude-longitude-to-north-east-coordinates
How to convert my Google Maps coordinates (latitude/longitude) to north-east coordinates - Quora
Answer (1 of 4): I assume you want to calculate the Eastings and Northings on a Transverse Mercator projection. It's actually quite a complicated calculation if you want to do it yourself. There are online calculators, for instance https://www.latlong.net/lat-long-utm.html which will give you th...
🌐
Google Play
play.google.com › store › apps › details
Coordinates Converter: GPS Map - Apps on Google Play
September 26, 2024 - With the GPS Coordinate Converter app, you can effortlessly convert GPS Coordinates into various coordinate formats, calculate distances in different units, rapidly identify your current location Welcome to our Coordinates Converter: GPS Map app, which provides seamless GPS coordinate conversions and a range of additional features, including GPS mapping, locating your current location, and distance calculation.