POST api/group/geoaggregation/{zoom}

Returns GeoAggregations of all searching groups Processes this group API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
zoom

The zoom value supplied with the request.

integer

Default value is 10

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

GroupLocationAggregationDataContract
NameDescriptionTypeAdditional information
Total

The total value.

integer

None.

Aggregations

The collection of aggregations.

Collection of AggregationLatLonCountDataContract

None.

Response Formats

application/json, text/json

Sample:
{
  "Total": 1,
  "Aggregations": [
    {
      "LatLon": {
        "Latitude": 1.1,
        "Longitude": 2.1
      },
      "Count": 1
    },
    {
      "LatLon": {
        "Latitude": 1.1,
        "Longitude": 2.1
      },
      "Count": 1
    }
  ]
}