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.6px")
.style("fill",fillColor)
.on("mouseover",polyHover)
.on("mouseout",polyHoverOut)
function fillColor(d,i){
var color = "rgb(240,248,255)"
if(d.Transportation=="4, 5"){color="rgb(0,102,51)"}
if(d.Transportation=="2, 3"){color="blue"}
if(d.Transportation=="1"){color="rgb(180,0,0)"}
if(d.Transportation=="J, Z"){color="purple"}
if(d.Transportation=="FERRY"){color="pink"}
if(d.Transportation=="R, W"){color="rgb(255,255,0)"}
return color
}
p.enter().append("polyline")
.data(isodetail)
.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","rgb(255,102,102)")
svg
.append("text")
.attr("x","350")
.attr("y","100")
.attr("class","hoverText")
.text(d.Address)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","105")
.attr("class","hoverText")
.text(d.BuildingType)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","110")
.attr("class","hoverText")
.text(d.BuildingGreenhouseEmission)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","365")
.attr("class","hoverText")
.text(d.Transportation)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","370")
.attr("class","hoverText")
.text(d.Availability)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","115")
.attr("class","hoverText")
.text(d.CarbonFootprintPublicTransport)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","350")
.attr("y","120")
.attr("class","hoverText")
.text(d.CarbonFootprintCar)
.style ("font-size", "5px")
svg
.append("text")
.attr("x","310")
.attr("y","105")
.attr("class","hoverText")
.text("Building Types")
.style ("font-size", "5px")
svg
.append("text")
.attr("x","310")
.attr("y","100")
.attr("class","hoverText")
.text("Address")
.style ("font-size", "5px")
svg
.append("text")
.attr("x","305")
.attr("y","110")
.attr("class","hoverText")
.text("CO2 Emission")
.style ("font-size", "5px")
svg
.append("text")
.attr("x","305")
.attr("y","115")
.attr("class","hoverText")
.text("CO2 by bus/subway")
.style ("font-size", "5px")
svg
.append("text")
.attr("x","305")
.attr("y","120")
.attr("class","hoverText")
.text("CO2 by car")
.style ("font-size", "5px")
}
function polyHoverOut(){
d3.select(this).style("fill",fillColor)
svg.selectAll("text.hoverText").remove()
}
return svg.node();
}