From 64c71234ec9af8e959a71efbab25e0176b4c040a Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Sat, 4 Apr 2026 13:13:41 +0300 Subject: [PATCH] fix: remove land fill - gaps show ocean gray instead of white lines Co-Authored-By: Claude Opus 4.6 (1M context) --- layouts/shortcodes/world-map.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/layouts/shortcodes/world-map.html b/layouts/shortcodes/world-map.html index ba4a052..27b327d 100644 --- a/layouts/shortcodes/world-map.html +++ b/layouts/shortcodes/world-map.html @@ -110,11 +110,7 @@ if (!geoData) return; - // Draw land base fill - ctx.fillStyle = '#ffffff'; - drawGeometry(ctx, geoData.land, sx, sy, true); - - // Draw country fills + // Draw country fills (no separate land fill — gaps show ocean, not white) geoData.features.forEach(function(f) { var id = String(f.id).padStart(3, '0'); var c = byIsoNum[id];