Point toString return lng lat, I think the correct order is lat, lng Wrong: `public function __toString() { return $this->getLng().' '.$this->getLat(); }` Correct: `public function __toString() { return $this->getLat().' '.$this->getLng(); }`