carte des villes et ajout de ville sur accueil

This commit is contained in:
Tykayn 2025-07-05 12:55:33 +02:00 committed by tykayn
parent 56f62c45bb
commit a2936841f9
8 changed files with 601 additions and 30 deletions

View file

@ -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;
}
}