POST api/group/geoaggregation/{zoom}
Returns GeoAggregations of all searching groups
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| zoom | integer |
Default value is 10 |
Body Parameters
None.
Response Information
Resource Description
GroupLocationAggregationDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| 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
}
]
}