So far I've explored two methods, but haven't been succcessful
converting my d3 image to SVG via SVG crowbar, but it left out dots on my map and also wasn't the high resolution image conversion I was looking for.
the following snippet of code, dies without any message
d3.select("#download").on("click", function () { d3.select("#map_container") .attr("href", 'data:application/octet-stream;base64,' + btoa(d3.select("#map_container").html())) .attr("download", "map.jpeg") });
Any help will be greatly appreciated