public function Point::getBBox in geoPHP 8
Same name and namespace in other branches
- 7 geoPHP/lib/geometry/Point.class.php \Point::getBBox()
Overrides Geometry::getBBox
File
- geoPHP/
lib/ geometry/ Point.class.php, line 83
Class
- Point
- Point: The most basic geometry type. All other geometries are built out of Points.
Code
public function getBBox() {
return array(
'maxy' => $this
->getY(),
'miny' => $this
->getY(),
'maxx' => $this
->getX(),
'minx' => $this
->getX(),
);
}