How to Get Latitude and Longitude from Cell Tower Info Using Azure Maps?

Mohit 0 Reputation points
2025-03-13T13:54:38.4266667+00:00

Google Maps provides an API to determine location based on cell tower information. For example, the following request retrieves location details using cellId, locationAreaCode, mobileCountryCode, and mobileNetworkCode:

curl -X POST "https://www.googleapis.com/geolocation/v1/geolocate?key=API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "radioType": "gsm",
    "considerIp": false,
    "cellTowers": [
      {
        "cellId": xxxxxxxx,
        "locationAreaCode": xxxxx,
        "mobileCountryCode": xxx,
        "mobileNetworkCode": x
      }
    ]
  }

Does Azure Maps offer a similar API to retrieve location information using cell tower data? If so, what is the equivalent request format?

Azure Maps
Azure Maps
An Azure service that provides geospatial APIs to add maps, spatial analytics, and mobility solutions to apps.
809 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Manas Mohanty 3,125 Reputation points Microsoft External Staff
    2025-03-13T15:29:48.0933333+00:00

    Hi Mohit

    I could not find mention of reverse geocoding using cell tower.

    But you can find respective area's latitude and longitude from pin code/area using below commands.

    curl -X GET "https://atlas.microsoft.com/search/address/json?subscription-key=<apikey>&api-version=1.0&language=en-US&query=<pincodeofarea or areaname>"
    

    Reference

    Hope it helps.

    Thank you.

    1 person found this answer helpful.
    0 comments No comments

  2. rbrundritt 20,201 Reputation points Microsoft Employee
    2025-03-13T15:38:32.0866667+00:00

    Azure Maps does not provide an API to get location information from cell tower triangulation. In fact, this is the first time I've come across anyone has asking for this. Looking around I don't see any 3rd party solutions for this in the Azure Marketplace.

    There are some other companies that provide similar services but I'm not sure where those are hosted. For example:

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.