chart = {
const width = 960,
height = 900;
const svg = d3.create("svg")
.attr("viewBox", [-60, 0, width, height]);
var projection = d3
.geoMercator()
.fitSize([width -50, height -50], zoom);
var path = d3.geoPath().projection(projection);
var path2 = d3.geoPath().projection(projection);
var path3 = d3.geoPath().projection(projection);
var circle1 = d3.geoPath().projection(projection);
var g = svg.append("g").attr("id", "paths");
g.selectAll("path")
.data(nycparks.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.style("fill", "green")
.style('fill-opacity','.2')
.style("stroke-width", ".5")
.style("stroke", "green")
.on('mouseover', addFill)
.on('mouseleave', removeFill)
function addFill(event,d) {
d3.select(this).style("fill", "blue")
d3.select(this).style('fill-opacity','.2')
svg
.append('text')
.attr('class', 'labels')
.attr('x', '50')
.attr('y', '700')
.attr("font-family", "Helvetica")
.attr('font-size', '1em')
.text(d.properties.park_name)
}
function removeFill(event,d) {
d3.selectAll('text.labels').remove()
d3.select(this).style("fill", "green")
d3.select(this).style('fill-opacity','.2')
}
g.selectAll("path2")
.data(nycsubway.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.style("fill", "none")
.style('fill-opacity','0')
.style("stroke-width", "1")
.style("stroke", "red")
g.selectAll("path2")
.data(nycstreets.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.style("fill", "none")
.style('fill-opacity','.5')
.style("stroke-width", ".4")
.style("stroke", "gray")
var cir = svg.append("g").attr("id", "paths");
cir.selectAll("circle")
.data(nycstations.features)
.enter()
.append("circle")
.attr('cx',function(d) {return path.centroid(d)[0]})
.attr("cy",function(d) {return path.centroid(d)[1]})
.attr('r', 3)
.attr('fill', 'red')
.style("fill", "red")
.style('fill-opacity','.5')
.style("stroke-width", "1")
g.selectAll("circle")
.data(siteDot)
.enter()
.append("circle")
.attr('cx',function(d) {return projection([d.long,d.lat])[0]})
.attr("cy",function(d) {return projection([d.long,d.lat])[1]})
.attr('r', 6)
.attr('fill', 'black')
.style('fill-opacity','.9')
.style("stroke-width", "1")
var t = svg.selectAll('text')
t.enter().append('text')
.data(siteDot)
.enter()
.append('text')
.attr('class','annotation')
.attr('x','50')
.attr('y','750')
.attr("font-family", "Helvetica")
.attr('font-size','.75em')
.attr('fill','rgb(50,50,50)')
.text(function(d){return d.Address})
var t = svg.selectAll('text')
t.enter().append('text')
.data(siteDot)
.enter()
.append('text')
.attr('class','siteDescription')
.attr('x','50')
.attr('y','770')
.attr("font-family", "Helvetica")
.attr('font-size','.5em')
.attr('fill','rgb(50,50,50)')
.text(function(d){return d.Description})
var wrap = svg.selectAll("text.siteDescription")
.each(function(d, i) { wrap_text(d3.select(this), 250) });
t.enter().append('text')
.data(siteDot)
.enter()
.append('text')
.attr('class','annotation')
.attr('x','50')
.attr('y','730')
.attr("font-family", "Helvetica")
.attr('font-size','1.25em')
.attr('fill','rgb(50,50,50)')
.text(function(d){return d.Name})
var ln = svg.append("g").attr("id", "paths");
cir = svg.selectAll("line")
.data(siteDot)
.enter()
.append('line')
.attr('class','sbLn')
.attr('x1','250')
.attr('y1','725')
.attr('x2',function(d) {return projection([d.long,d.lat])[0]})
.attr("y2",function(d) {return projection([d.long,d.lat])[1]})
.attr('stroke-width','.8')
.attr('stroke-opacity','1')
.style('stroke','rgb(0,0,0)')
svg
.append('line')
.attr('class','sbLn')
.attr('x1',200)
.attr('y1',725)
.attr('x2',250)
.attr('y2',725)
.attr('stroke-width','.8')
.attr('stroke-opacity','1')
.style('stroke','rgb(0,0,0)')
var cir2 = svg.append("g").attr("id", "paths");
cir2.selectAll("circle")
.data(attraction)
.enter()
.append("circle")
.attr('cx',function(d) {return projection([d.Long,d.Lat])[0]})
.attr("cy",function(d) {return projection([d.Long,d.Lat])[1]})
.attr('r', 3)
.attr('fill', 'pink')
.style('fill-opacity','.9')
.style("stroke-width", "1")
.on('mouseover', poiAttraction)
.on('mouseout', poiErase)
function poiAttraction(event, d) {
svg
.append("text")
.attr('class','pois')
.attr('x','50')
.attr('y','650')
.attr("font-family", "Helvetica")
.attr('font-size','.75em')
.text(d.Name)
svg
.append("text")
.attr('class','pois')
.attr('x','50')
.attr('y','665')
.attr("font-family", "Helvetica")
.attr('font-size','.5em')
.text(d.Description)
svg.append('line')
.attr('class','pois')
.attr('x1','100')
.attr('y1','600')
.attr('x2',projection([d.Long,d.Lat])[0])
.attr("y2",projection([d.Long,d.Lat])[1])
.attr('stroke-width','.8')
.attr('stroke-opacity','.4')
.style('stroke','rgb(0,0,0)')
svg
.append('line')
.attr('class','pois')
.attr('x1',100)
.attr('y1',600)
.attr('x2',100)
.attr('y2',630)
.attr('stroke-width','.8')
.attr('stroke-opacity','1')
.style('stroke','rgb(0,0,0)')
}
function poiErase(event, d) {
d3.selectAll('text.pois').remove()
d3.selectAll('line.pois').remove()
}
var cir3 = svg.append("g").attr("id", "paths");
cir3.selectAll("circle")
.data(Food)
.enter()
.append("circle")
.attr('cx',function(d) {return projection([d.Long,d.Lat])[0]})
.attr("cy",function(d) {return projection([d.Long,d.Lat])[1]})
.attr('r', 3)
.attr('fill', 'orange')
.style('fill-opacity','.9')
.style("stroke-width", "1")
.on('mouseover', poiText)
.on('mouseout', poiErase1)
function poiText(event, d) {
svg
.append("text")
.attr('class','pois')
.attr('x','50')
.attr('y','650')
.attr("font-family", "Helvetica")
.attr('font-size','.75em')
.text(d.Name)
svg
.append("text")
.attr('class','pois')
.attr('x','50')
.attr('y','665')
.attr("font-family", "Helvetica")
.attr('font-size','.5em')
.text(d.Description)
svg.append('line')
.attr('class','pois')
.attr('x1','100')
.attr('y1','600')
.attr('x2',projection([d.Long,d.Lat])[0])
.attr("y2",projection([d.Long,d.Lat])[1])
.attr('stroke-width','.8')
.attr('stroke-opacity','.4')
.style('stroke','rgb(0,0,0)')
svg
.append('line')
.attr('class','pois')
.attr('x1',100)
.attr('y1',600)
.attr('x2',100)
.attr('y2',630)
.attr('stroke-width','.8')
.attr('stroke-opacity','1')
.style('stroke','rgb(0,0,0)')
var wrap = svg.selectAll("text.pois")
.each(function(d, i) { wrap_text(d3.select(this), 250) });
}
function poiErase1(event, d) {
d3.selectAll('text.pois').remove()
d3.selectAll('line.pois').remove()
}
g.selectAll("path3")
.data(zips.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.style("fill", "none")
.style('fill-opacity','.5')
.style("stroke-width", ".3")
.style("stroke", "black")
return svg.node();
}