Find Position with WLAN

User Story

The user wants to determine the WGS-84 compliant coordinates defined by the WLAN information in the POST body.

Request

The code block below demonstrates a POST request to get the geocoordinates defined by the WLAN information in the POST body. You need to set the request content type in the HTTP headers.

Global
Azure
POST /v2/locate?apiKey={YOUR_API_KEY} HTTP/1.1
Host: positioning.hereapi.com
Content-Type: application/json
POST /v2/locate?apiKey={YOUR_API_KEY} HTTP/1.1
Host: az.positioning.hereapi.com
Content-Type: application/json

Note

This example uses a HERE API Key to authenticate your request. For the available authentication options, see the Identity & Access Management Developer Guide.

This POST request requires the following POST body.

{
  "wlan": [
    {
      "mac": "A0:EC:F9:1E:32:C1",
      "rss": -75
    },
    {
      "mac": "A0:EC:F9:15:72:5E",
      "rss": -77
    },
    {
      "mac": "A0:EC:F9:15:72:5C",
      "rss": -79
    },
    {
      "mac": "A0:EC:F9:15:72:53",
      "rss": -79
    },
    {
      "mac": "A0:EC:F9:20:9D:AC",
      "rss": -80
    }
  ]
}

Response

The response to the request contains:

  • lat: WGS-84 compliant latitude coordinate
  • lng: WGS-84 compliant longitude coordinate
  • accuracy: Radius of the uncertainty circle around the position in meters
{
  "location": {
    "lat": 61.44683164,
    "lng": 23.86407922,
    "accuracy": 12
  }
}

results matching ""

    No results matching ""