From cde914075ea3d59619678a2c8a2a822a9da67e83 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 20 Jul 2018 22:44:04 -0400 Subject: [PATCH] height/width --- app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index b1cb7e4..3184220 100644 --- a/app.js +++ b/app.js @@ -1,11 +1,11 @@ -var width = 1000, - height = 600; +var width = 960, + height = 490; d3.select('svg') .attr('width', width) .attr('height', height); -var worldProjection = d3.geoNaturalEarth1(); +var worldProjection = d3.geoEquirectangular(); var geoPath = d3.geoPath() .projection(worldProjection);