Skip to content

Point toString wrong order #69

Open
@lucabecchetti

Description

@lucabecchetti

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(); }

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions