Home
last modified time | relevance | path

Searched refs:getGeos (Results 1 – 11 of 11) sorted by relevance

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DGeometry.php284 if ($this->getGeos()) {
287 $this->getGeos()->setSRID((int) $srid);
343 if ($this->getGeos()) {
346 return geoPHP::geosToGeometry($this->getGeos()->envelope());
471 return $this->getGeos();
499 public function getGeos() function in geoPHP\\Geometry\\Geometry
532 if ($this->getGeos()) {
534 return geoPHP::geosToGeometry($this->getGeos()->pointOnSurface());
548 if ($this->getGeos()) {
550 return $this->getGeos()
[all...]
H A DMultiPolygon.php32 if ($this->getGeos()) {
35 return geoPHP::geosToGeometry($this->getGeos()->centroid());
57 if ($this->getGeos()) {
60 return $this->getGeos()->area();
H A DCollection.php119 if ($this->getGeos()) {
122 $envelope = $this->getGeos()->envelope();
263 if ($this->getGeos()) {
266 return $this->getGeos()->equals($geometry->getGeos());
334 if ($this->getGeos()) {
337 return $this->getGeos()->distance($geometry->getGeos());
H A DMultiGeometry.php25 if ($this->getGeos()) {
28 return $this->getGeos()->isSimple();
49 if ($this->getGeos()) {
52 return $this->getGeos()->boundary();
65 if ($this->getGeos()) {
68 return $this->getGeos()->area();
H A DPolygon.php77 if ($this->getGeos() && $exteriorOnly == false) {
80 return $this->getGeos()->area();
120 if ($this->getGeos()) {
123 return geoPHP::geosToGeometry($this->getGeos()->centroid());
225 if ($this->getGeos()) {
228 return $this->getGeos()->isSimple();
331 if ($this->getGeos()) {
334 return $this->getGeos()->contains($geometry->getGeos());
H A DLineString.php80 if ($this->getGeos()) {
83 return geoPHP::geosToGeometry($this->getGeos()->centroid());
118 if ($this->getGeos()) {
121 return $this->getGeos()->length();
430 if ($this->getGeos()) {
433 return $this->getGeos()->isSimple();
479 if ($this->getGeos()) {
482 return $this->getGeos()->distance($geometry->getGeos());
H A DMultiLineString.php37 if ($this->getGeos()) {
40 return geoPHP::geosToGeometry($this->getGeos()->centroid());
H A DMultiPoint.php90 if ($this->getGeos()) {
93 return geoPHP::geosToGeometry($this->getGeos()->centroid());
H A DGeometryCollection.php66 if ($this->getGeos()) {
69 return geoPHP::geosToGeometry($this->getGeos()->centroid());
H A DPoint.php260 if ($this->getGeos()) {
263 return $this->getGeos()->distance($geometry->getGeos());
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DWKT.php282 return $writer->write($geometry->getGeos());