{
let div = d3.create("div");
var width = 1000;
var height = 800;
var svg = div.append("svg").attr("height", height).attr("width", width);
var projection = d3.geoEquirectangular().fitExtent([[0,0],[width, height]], file);
var geoGenerator = d3.geoPath().projection(projection);
var geoPath = svg.append('path').attr('d', geoGenerator(file)).attr("stroke","yellow").attr("fill", "#4A148C");
return div.node();
}