diff --git a/resources/js/charts.js b/resources/js/charts.js index eaecafa..b6a1ea9 100644 --- a/resources/js/charts.js +++ b/resources/js/charts.js @@ -551,10 +551,9 @@ function WorldMap(selection) { } function setProjection(type) { if (type === 'mercator') { - var ctr = getBestCenter(); const bScale = baseScale(); projection = d3.geoMercator() - .center(ctr) + .center([0, 15]) .scale(bScale) .translate([innerW() / 2, height / 1.5]); } else if (type === 'orthographic') {