From 65c04781cc94fb2a97aaee973316f7059c04900e Mon Sep 17 00:00:00 2001 From: Christian Beutel <> Date: Thu, 26 Jun 2025 19:03:42 +0200 Subject: [PATCH] fix graticule --- web/src/lib/vendor/maplibre-graticule/maplibre-graticule.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/src/lib/vendor/maplibre-graticule/maplibre-graticule.ts b/web/src/lib/vendor/maplibre-graticule/maplibre-graticule.ts index 9c7c53e4..0f794916 100644 --- a/web/src/lib/vendor/maplibre-graticule/maplibre-graticule.ts +++ b/web/src/lib/vendor/maplibre-graticule/maplibre-graticule.ts @@ -174,6 +174,9 @@ export default class MaplibreGraticule { "text-size": this.config.labelSize ?? 12, "text-anchor": longitudePosition === "top" ? "top" : "bottom", "text-offset": this.config.longitudeOffset ?? [0, 0], + "text-font": [ + "Noto Sans Regular", + ], }, paint: { "text-color": this.config.labelColor ?? "#000000", @@ -215,6 +218,9 @@ export default class MaplibreGraticule { "text-size": this.config.labelSize ?? 12, "text-anchor": latitudePosition === "left" ? "left" : "right", "text-offset": this.config.latitudeOffset ?? [0, 0], + "text-font": [ + "Noto Sans Regular", + ], }, paint: { "text-color": this.config.labelColor ?? "#000000",