Hi all,
Our project (which incorporates an iOS app) is currently using Google Maps Geolocation REST API to translate Wi-Fi and cell tower data coming from proprietary devices into GPS lat/long coordinates. https://developers.google.com/maps/documentation/geolocation/intro
For example, you can look up the location of a Wi-Fi access point based on the following input:
{
"macAddress": "00:25:9c:cf:1c:ac",
"signalStrength": -43,
"age": 0,
"channel": 11,
"signalToNoiseRatio": 0
}
However, this service does not cover all of our customer's locations, particularly when the house has an iPhone only.
Does Apple offer an equivalent REST API service, based on Apple Maps?
Thanks,
Henry