chart = {
const width = 500,
height = 500;
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height]);
var g = svg.append("g").attr("id", "paths");
var p = svg.selectAll("polyline")
.data(outlines)
.enter()
.append("polyline")
.attr("points", function(d) {return d.pts})
.style("stroke","black")
.style("stroke-width","0.3px")
.style("fill","rgb(204,238,255)")
.on("mouseover",polyHover)
.on("mouseout",polyHoverOut)
p.enter().append("polyline")
.data(wt2)
.enter()
.append("polyline")
.attr("points", function(d) {return d})
.style("stroke","black")
.style("stroke-width","0.1px")
.style("fill","none")
function polyHover(event,d){
d3.select(this).style("fill","red")
svg
.append("text")
.attr("x","350")
.attr("y","350")
.attr("class","hoverText")
.text(d.Address)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","360")
.attr("class","hoverText")
.text(d.BuildingType)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","370")
.attr("class","hoverText")
.text(d.Workersnumber)
.style ("font-size", "5px")
}
function polyHoverOut(){
d3.select(this).style("fill","rgb(204,238,255)")
svg.selectAll("text.hoverText").remove()
}
return svg.node();
}