refactor: migrate markers (#1324)

* refactor: migrate markers

* Update src/modules/markers-generator.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update src/modules/markers-generator.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update src/modules/markers-generator.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update src/modules/markers-generator.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update src/modules/markers-generator.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Fix marker names by removing unnecessary suffixes for Lighthouse and Waterfall

* refactor: marker methods to use underscore for unused parameters

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Azgaar <maxganiev@yandex.com>
This commit is contained in:
Marc Emmanuel 2026-02-18 21:10:27 +01:00 committed by GitHub
parent bce65ce2b3
commit da9e915cdc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 1805 additions and 1288 deletions

View file

@ -30,6 +30,7 @@ declare global {
var mapName: HTMLInputElement;
var religionsNumber: HTMLInputElement;
var distanceUnitInput: HTMLInputElement;
var heightUnit: HTMLSelectElement;
var rivers: Selection<SVGElement, unknown, null, undefined>;
var oceanLayers: Selection<SVGGElement, unknown, null, undefined>;
@ -87,4 +88,5 @@ declare global {
var $: (selector: any) => any;
var scale: number;
var changeFont: () => void;
var getFriendlyHeight: (coords: [number, number]) => string;
}