Positioning API Developer's Guide

Successful Locate Response

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 location estimate.

{
  "location": {
  "lat": 61.4706194,
  "lng": 23.72265816,
  "accuracy": 829
  }
}

The following example includes a location estimate with an altitude.

{
  "location": {
  "lat": 61.4706194,
  "lng": 23.72265816,
  "accuracy": 829,
  "alt":100,
  "altaccuracy":47
  }
}