fix: remove land fill - gaps show ocean gray instead of white lines
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 10s
Deploy Internet for Kids / Deploy (push) Successful in 7s
Deploy Internet for Kids / Health Check (push) Successful in 2s
Deploy Internet for Kids / Smoke Tests (push) Successful in 3s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 8s
Deploy Internet for Kids / Promote to Latest (push) Successful in 1s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 2s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-04-04 13:13:41 +03:00
parent 64c4a51b46
commit 64c71234ec

View File

@@ -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];