From 2eb2099887554a829220ced7a5f23aecbb528707 Mon Sep 17 00:00:00 2001 From: gitmuhammedalbayrak Date: Thu, 20 Nov 2025 18:49:21 +0300 Subject: [PATCH] Scale --- .vscode/settings.json | 2 ++ index.html | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..7a73a41 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/index.html b/index.html index 0a23642..c21d64d 100644 --- a/index.html +++ b/index.html @@ -117,9 +117,8 @@ // Standard projection - we'll rotate the entire SVG group const projection = d3.geoNaturalEarth1() - .scale(200) + .scale(240) .center([0, 0]) - .clipExtent([[0, 0], [width, height]]) .translate([width / 2, height / 2]); const path = d3.geoPath().projection(projection);