feat(Map): Add map level option to store custom labels

This commit is contained in:
Dmitry Popov
2024-10-14 18:23:39 +04:00
parent 1d36fadbfa
commit aa0ecbc998
19 changed files with 178 additions and 144 deletions

View File

@@ -65,7 +65,7 @@ export class LabelsManager {
}
hasLabel(label: string) {
return this.parsedLabels.labels.includes(label);
return this.parsedLabels.labels?.includes(label);
}
toggleLabel(label: string) {