From 2d9beee1333fb3b1d544db5e95fe73b7b1768474 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Mon, 12 Sep 2022 09:17:31 -0400 Subject: [PATCH] removing logs --- app.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app.js b/app.js index 3b39105..c61ccad 100644 --- a/app.js +++ b/app.js @@ -52,14 +52,12 @@ d3.select('form').on('submit', function(event){ const location1 = worldProjection([lat1, lng1]); const x1 = location1[0]; const y1 = location1[1]; - console.log(x1, y1); const lat2 = d3.select('input:nth-child(4)').node().value const lng2 = d3.select('input:nth-child(5)').node().value const location2 = worldProjection([lat2, lng2]); const x2 = location2[0]; const y2 = location2[1]; - console.log(x2, y2); d3.select('svg').append('rect') .attr('fill', '#000')