LTE Positioning
User Story
The user wants to determine the WGS-84 compliant coordinates defined by the LTE information in the POST body.
Request
https://pos.ls.hereapi.com/positioning/v1/locate?apiKey={YOUR_API_KEY}
You need to set request content type in the HTTP headers: Content-Type: application/json
This POST request requires the following POST body. {
"lte": [{
"mcc": 262,
"mnc": 2,
"cid": 2898945,
"nmr": [
{ "earfcn": 6300, "pci": 237 },
{ "earfcn": 6300, "pci": 442 }
]
}]
}
Response
-
lat
: WGS-84 compliant latitude coordinate -
long
: WGS-84 compliant longitude coordinate -
accuracy
: Radius of the uncertainty circle around the position in meters
{
"location": {
"lat": 52.5180243,
"lng": 13.37655529,
"accuracy": 300
}
}