MercatorCanada = {
const height = 960;
const width = 1000;
const svg = d3.select(DOM.svg(width, height));
const padding = 20;
const projection = d3.geoMercator().center([-125.13, 54.8]).scale(2000);
const path = d3.geoPath().projection(projection);
svg
.selectAll("path")
.data(canadaJson.features)
.enter()
.append("path")
.attr("d", path)
.style("stroke", "black")
.style("fill", "none");
return svg.node();
}