bbox = $bbox; return true; } new mb_exception(__FILE__ . ": setBbox(): parameter not a Mapbender_bbox!"); return false; } public function getBbox () { return $this->bbox; } //to note georss defines lat/lon not lon/lat protected function getItemString () { $str = parent::getItemString(); if (is_a($this->bbox, "Mapbender_bbox")) { $str .= "" . $this->bbox->min->y . " " . $this->bbox->min->x . " " . $this->bbox->max->y . " " . $this->bbox->max->x . "\n"; } return $str; } } ?>