From 5a4129ffca92b77159a4fce23074f6c74be4507f Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 26 Apr 2026 11:48:15 -0500 Subject: [PATCH] fix(rover): show building height tooltip in feet --- assets/js/rover_map_hook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/rover_map_hook.ts b/assets/js/rover_map_hook.ts index 0b9f9b71..4ef3e6ee 100644 --- a/assets/js/rover_map_hook.ts +++ b/assets/js/rover_map_hook.ts @@ -317,7 +317,7 @@ export const RoverMap: Partial = { fillOpacity: 0.45, interactive: true }) - .bindTooltip(`${Math.round(b.height_m)} m`, { direction: "top", offset: [0, -4] }) + .bindTooltip(`${Math.round(b.height_m * 3.28084)} ft`, { direction: "top", offset: [0, -4] }) .addTo(this.candidateBuildingsLayer) } })