Successful Response for Locate Request
Note
HERE Network Positioning API v1 is in maintenance and is not actively developed. Use HERE Network Positioning API v2 to get the latest features and updates. To learn more, see the HERE Network Positioning API v2 Developer Guide.
If a request was successful, the HTTP response is "200 OK" and the response body includes the location estimate. If you requested additional data, such as the altitude, the service also includes that data in the response. Latitude and longitude are expressed in the WGS-84 format. Accuracy is the radius of the location uncertainty circle in meters. Altitude (WGS-84) and altitude accuracy are expressed in meters. The following example includes a an indoor location estimate.
{
"location": {
"lat": 61.4706194,
"lng": 23.72265816,
"accuracy": 829
}
}{
"location": {
"lat": 61.470619,
"lng": 23.722658,
"accuracy": 7,
"floor": {
"level": 1,
"id": "DM_1111111",
"name": "Test Building"
}
}
}The following example includes a location estimate with an altitude.
{
"location": {
"lat": 61.4706194,
"lng": 23.72265816,
"accuracy": 829,
"alt":100,
"altaccuracy":47
}
}Updated last month