/cluster

location id, lnglat and label of cluster locations.

GET geolytix.xyz/api/location/select/cluster

This endpoint queries a JSON array of ID and label from a cluster location.

Query Parameters

NameTypeDescription

locale

string

The locale (key) which contains the cluster layer.

layer

string

The cluster layer (key).

table

string

The table which holds the cluster locations.

lnglat

string

Comma seperated float for longitude and latitude.

filter

string

A stringified JSON filter object.

count

string

The maximum number of locations from cluster to return.

token

string

A token is required to access private endpoints.

[
  {
    "id": 8213,
    "label": "Cooltrader - Erdington",
    "lnglat": [
      -1.8388261591,
      52.5237149882455
    ]
  },
  {
    "id": 8853,
    "label": "Erdington",
    "lnglat": [
      -1.83784775521401,
      52.5235273833912
    ]
  },
  {...}
]

Access filter on the layer apply and the locations can not be returned if the access token does hold the required roles for private endpoints.

Last updated