-
Notifications
You must be signed in to change notification settings - Fork 737
/
GeoBoundingBox.php
48 lines (42 loc) · 1.3 KB
/
GeoBoundingBox.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
namespace Elastica\Query;
use Elastica\Exception\InvalidException;
/**
* Geo bounding box query.
*
* @author Fabian Vogler <[email protected]>
*
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-geo-bounding-box-query.html
*/
class GeoBoundingBox extends AbstractQuery
{
/**
* Construct BoundingBoxQuery.
*
* @param array $coordinates Array with top left coordinate as first and bottom right coordinate as second element
*/
public function __construct(string $key, array $coordinates)
{
$this->addCoordinates($key, $coordinates);
}
/**
* Add coordinates.
*
* @param array $coordinates Array with top left coordinate as first and bottom right coordinate as second element
*
* @throws \Elastica\Exception\InvalidException If $coordinates doesn't have two elements
*
* @return $this
*/
public function addCoordinates(string $key, array $coordinates): self
{
if (!isset($coordinates[0], $coordinates[1])) {
throw new InvalidException('expected $coordinates to be an array with two elements');
}
$this->setParam($key, [
'top_left' => $coordinates[0],
'bottom_right' => $coordinates[1],
]);
return $this;
}
}