for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Elastica\Aggregation;
/**
* Class GeotileGridAggregation.
*
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-geotilegrid-aggregation.html
*/
class GeotileGridAggregation extends AbstractAggregation
{
use Traits\ShardSizeTrait;
public const DEFAULT_PRECISION_VALUE = 7;
public const DEFAULT_SIZE_VALUE = 10000;
* @param string $name the name of this aggregation
* @param string $field the field on which to perform this aggregation
public function __construct(string $name, string $field)
parent::__construct($name);
$this->setField($field);
}
* Set the field for this aggregation.
* @param string $field the name of the document field on which to perform this aggregation
* @return $this
public function setField(string $field): self
return $this->setParam('field', $field);
* Set the precision for this aggregation.
* @param int $precision an integer between 1 and 12, inclusive. Defaults to 5.
public function setPrecision(int $precision): self
return $this->setParam('precision', $precision);
* Set the maximum number of buckets to return.
* @param int $size defaults to 10,000
public function setSize(int $size): self
return $this->setParam('size', $size);