mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-06-20 01:44:42 +02:00
ajout de maplibre sur les stats
This commit is contained in:
parent
7edab7891e
commit
cf292c6266
7 changed files with 216 additions and 97 deletions
|
@ -76,6 +76,22 @@ class Place
|
|||
#[ORM\Column(nullable: true)]
|
||||
private ?bool $has_note = null;
|
||||
|
||||
#[ORM\Column(nullable: true)]
|
||||
private ?string $main_tag = null;
|
||||
|
||||
public function getMainTag(): ?string
|
||||
{
|
||||
return $this->main_tag;
|
||||
}
|
||||
|
||||
public function setMainTag(?string $main_tag): static
|
||||
{
|
||||
$this->main_tag = $main_tag;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
public function getCompletionPercentage(): ?int
|
||||
{
|
||||
$completion_percentage = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue