1 | <?php |
||
21 | class GeocoderCoordinateRequest extends AbstractGeocoderReverseRequest |
||
22 | { |
||
23 | /** |
||
24 | * @var Coordinate |
||
25 | */ |
||
26 | private $coordinate; |
||
27 | |||
28 | /** |
||
29 | * @param Coordinate $coordinate |
||
30 | */ |
||
31 | public function __construct(Coordinate $coordinate) |
||
35 | |||
36 | /** |
||
37 | * @return Coordinate |
||
38 | */ |
||
39 | public function getCoordinate() |
||
43 | |||
44 | /** |
||
45 | * @param Coordinate $coordinate |
||
46 | */ |
||
47 | public function setCoordinate(Coordinate $coordinate) |
||
51 | |||
52 | /** |
||
53 | * @return mixed[] |
||
54 | */ |
||
55 | public function buildQuery() |
||
59 | } |
||
60 |