From dc702728bed6b6ca6ee4b28789c86fc1fe00d098 Mon Sep 17 00:00:00 2001 From: htlee Date: Sun, 15 Feb 2026 18:51:29 +0900 Subject: [PATCH] tweak(map): increase bathymetry depth label size --- apps/web/src/widgets/map3d/Map3D.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/widgets/map3d/Map3D.tsx b/apps/web/src/widgets/map3d/Map3D.tsx index 13ca7ae..8024f03 100644 --- a/apps/web/src/widgets/map3d/Map3D.tsx +++ b/apps/web/src/widgets/map3d/Map3D.tsx @@ -960,7 +960,8 @@ function injectOceanBathymetryLayers(style: StyleSpecification, maptilerKey: str "symbol-placement": "line", "text-field": depthLabel, "text-font": ["Noto Sans Regular", "Open Sans Regular"], - "text-size": ["interpolate", ["linear"], ["zoom"], 10, 10, 12, 12], + // Make depth labels more legible on both mercator + globe. + "text-size": ["interpolate", ["linear"], ["zoom"], 10, 12, 12, 14, 14, 15], "text-allow-overlap": false, "text-padding": 2, "text-rotation-alignment": "map",