Lines Matching defs:geom
229 $geom = new GeometryCollection($geoms);
230 $centroid = $geom->centroid();
231 $bbox = $geom->getBBox();
627 * @param Geometry $geom
631 private function drawGeometry(Geometry $geom, int $colour): void
633 if (empty($geom)) {
637 switch ($geom->geometryType()) {
640 for ($i = 1; $i < $geom->numGeometries() + 1; $i++) {
641 $_geom = $geom->geometryN($i);
646 $this->drawPolygon($geom, $colour);
649 $this->drawLineString($geom, $colour);
652 $this->drawPoint($geom, $colour);