POST api/property/geoaggregation/{zoom}

Returns GeoAggregations of all properties

Request Information

URI Parameters

NameDescriptionTypeAdditional information
zoom

integer

Default value is 10

Body Parameters

None.

Response Information

Resource Description

Dezrez.Core.DataContracts.External.Api.Property.Query.Aggregations.PropertyLocationAggregationDataContract
NameDescriptionTypeAdditional information
Total

integer

None.

Aggregations

Collection of Dezrez.Core.DataContracts.External.Api.Aggregations.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
    }
  ]
}