Get features by bounding box

GET /<Base path for the interactive API from the API Lookup Service>/layers/<Layer ID>/bbox?west={westLongitude}&north={northLatitude}&east={eastLongitude}&south={southLatitude}
Host: <Hostname for the interactive API from the API Lookup Service>
Authorization: Bearer <Authorization Token>
Cache-Control: no-cache

Sample request

GET /layer/<Layer ID>/bbox?west=-110&north=53&east=-130&south=50&tags=

Note

You can alternatively use an API Key instead of an OAuth bearer token in an authorization header.

Sample response

{
  "type": "FeatureCollection",
  "features": [
    {
      "id": "{featureId}",
      "bbox": [
        -116.055555555,
        51.170833333,
        -116.055555555,
        51.170833333
      ],
      "type": "Feature",
      "properties": {
        "name": "Stanley Peak",
        "@ns:com:here:xyz": {
          "createdAt": 1529855977981,
          "updatedAt": 1529855977981
        }
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          -116.055555555,
          51.170833333
        ]
      }
    },
    {
      "id": "{featureId}",
      "bbox": [
        -123.291,
        50.1203,
        -123.291,
        50.1203
      ],
      "type": "Feature",
      "properties": {
        "name": "Mount Cayley",
        "@ns:com:here:xyz": {
          "createdAt": 1529855978027,
          "updatedAt": 1529855978027
        }
      },
      "geometry": {
        "type": "Point",
        "coordinates": [
          -123.291,
          50.1203
        ]
      }
    }
  ]
 }

Note

A bounding box can also be requested on a specific version of a layer using the "version" query parameter when using an interactive map layer.

results matching ""

    No results matching ""