Revert "Save cooridnates as GeoJSON in database"
This reverts commit ddb815d1b4
.
This commit is contained in:
parent
34088972f8
commit
5c25b036a4
5 changed files with 2 additions and 130 deletions
|
@ -51,11 +51,6 @@ class Offering
|
|||
*/
|
||||
private $description;
|
||||
|
||||
/**
|
||||
* @ORM\Column(type="object", nullable=true)
|
||||
*/
|
||||
private $coordinate;
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
|
@ -137,16 +132,4 @@ class Offering
|
|||
{
|
||||
return (string) $this-getTitle();
|
||||
}
|
||||
|
||||
public function getCoordinate()
|
||||
{
|
||||
return $this->coordinate;
|
||||
}
|
||||
|
||||
public function setCoordinate($coordinate): self
|
||||
{
|
||||
$this->coordinate = $coordinate;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue