carte des villes et ajout de ville sur accueil
This commit is contained in:
parent
56f62c45bb
commit
a2936841f9
8 changed files with 601 additions and 30 deletions
|
@ -98,6 +98,12 @@ class Stats
|
|||
#[ORM\Column(type: Types::DECIMAL, precision: 15, scale: 2, nullable: true)]
|
||||
private ?string $budget_annuel = null;
|
||||
|
||||
#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 7, nullable: true)]
|
||||
private ?string $lat = null;
|
||||
|
||||
#[ORM\Column(type: Types::DECIMAL, precision: 10, scale: 7, nullable: true)]
|
||||
private ?string $lon = null;
|
||||
|
||||
/**
|
||||
* @var Collection<int, CityFollowUp>
|
||||
*/
|
||||
|
@ -599,6 +605,28 @@ class Stats
|
|||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getLat(): ?string
|
||||
{
|
||||
return $this->lat;
|
||||
}
|
||||
|
||||
public function setLat(?string $lat): static
|
||||
{
|
||||
$this->lat = $lat;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getLon(): ?string
|
||||
{
|
||||
return $this->lon;
|
||||
}
|
||||
|
||||
public function setLon(?string $lon): static
|
||||
{
|
||||
$this->lon = $lon;
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue