{
const selection = d3Selection.select(map);
const canvas = selection.node();
const context = canvas.getContext("2d");
const path = d3.geoPath(projection)
.context(context)
.pointRadius(20);
context.beginPath();
context.fillStyle = "tomato";
for (let i = 0, l = myGeoJSON.features.length; i < l; i++){
const feature = myGeoJSON.features[i];
path(feature);
}
context.fill()
return canvas;
}