chart = {
const width = 900
,
height = 900;
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width-50, height-10]);
var projection = d3
.geoMercator()
.fitSize([width, height],cityLinesWeb, boxlines, );
var path = d3.geoPath().projection(projection);
var path2 = d3.geoPath().projection(projection);
var path3 = d3.geoPath().projection(projection);
var path4 = d3.geoPath().projection(projection);
var path5 = d3.geoPath().projection(projection);
var g = svg.selectAll('g').attr("id", "paths");
var c = svg.selectAll("circle")
var p = svg.selectAll("polyline")
staticLines(path3, boxBlack.features,"rgb(17,18,20)",'1','1',"none")
polyline(background,'none','1','1','Black')
staticLines(path4, parksWeb2.features,"rgb(111,193,67)",'.25','.1',"rgb(0,255,0)")
staticLines(path4, cityLinesWeb.features,"none",'1','0.8',"rgb(241,165,77)")
staticLines(path3, subwayLineWeb.features,"none",'1','4',"yellow")
function staticLines(path, data, sfill, sOpac, sW, stroke){
g.enter().append("path")
.data(data) //get data to define path
.enter() //there are more data than elements, this selects them
.append("path") //appends path to data
.attr('class','outlines')
.attr("d", path) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", sfill)
.style('stroke-opacity',sOpac)
.style("stroke-width", sW)
.style("stroke", stroke)
}
//lines from rhino
polyline(droneOutline,'none','1','1.9','orange')
polyline(drone3outline,'none','1','1.9','orange')
polyline(drone2outline,'none','1','1.9','orange')
polyline(lines,'rgb(240,31,36)','1.2','1.2','rgb(240,31,36)')
polyline(thepartymaker,'orange','4','0.5','none')
polyline(drone,'none','4','0.5','orange')
polyline(boxlines,'none','4','0.8','orange')
polyline(partyInsides,'black','1','0.5','none')
polyline(siteLiness,'none','1','0.8','rgb(241,165,77)')
polyline(boxouter,'none','1','15','Orange')
polyline(treeIns,'none','4','0.5','orange')
polyline(treeOut,'none','1','0.7','orange')
polyline(humansOut,'none','1','0.3','orange')
polyline(huamansPlayingIns,'none','4','0.7','orange')
//static points from qgis
staticCircles(subwayWeb.features,'5','rgb(235,220,40)','1',"0")
function staticCircles(data,r,sfill, sOpac, sWidth){
c.enter().append('circle')
.data(data) //get data to define path
.enter() //there are more data than elements, this selects them
.append("circle") //appends path to data
.attr('cx',function(d) {return path.centroid(d)[0]})
.attr("cy",function(d) {return path.centroid(d)[1]})
.attr('r', r)
.attr('fill', sfill)
.style('fill-opacity',sOpac)
.style("stroke-width", sWidth)
}
//draw icons at spreadsheet location
p.enter().append("polyline")
.data(green) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", locationPointer) //The d attribute defines a path to be drawn, only applies to appended elements
.attr('transform',function(d) {return 'translate('+projection([d.Long,d.Lat])[0]+','+projection([d.Long,d.Lat])[1]+')'})
.style("fill", 'rgb(17,18,20)')
.style("stroke-width", '1')
.style("stroke", 'green')
.on("mouseover", addText)
.on("mouseout", removeText)
//drawing images
p.enter().append("polyline")
.data(droneOutline) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", function(d) {return d}) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", 'white')
.style('fill-opacity','0')
.style("stroke", 'orange')
.style('stroke-dasharray','5 5')
.on("mouseover", addparty)
.on("mouseout", removeparty)
function addparty(event,d){
p.enter().append("polyline")
.data(pink2party) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(210,100,161)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(pink3party) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(203,13,119)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(pinkParty) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(203,13,119)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(yellowparty) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(234,179,50)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(greenparty) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(100,147,83)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(partyExplode) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'none')
.style("stroke-width", '.5')
.style("stroke", 'black')
p.enter().append("polyline")
.data(whiteparty) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'white')
.style("stroke-width", '.5')
.style("stroke", 'white')
p.enter().append("polyline")
.data(celebrateout) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(220,134,49)')
.style("stroke-width", '1.6')
.style("stroke", 'black')
p.enter().append("polyline")
.data(celebrateins) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'black')
.style("stroke-width", '0.')
.style("stroke", 'none')
svg//draw text
.append("text") //appends path to data
.attr('class','mText')
.attr('x',50)
.attr("y",600)
.attr('fill', 'black')
.style('font-family','helvetica')
.style("font-size", "11px")
.text('this is a detail')
}
function removeparty(event,d){
svg.selectAll('polyline.party').remove()
svg.selectAll('text.mText').remove()
}
//drawing CONFETTI
p.enter().append("polyline")
.data(drone2outline) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", function(d) {return d}) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", 'white')
.style('fill-opacity','0')
.style("stroke", 'orange')
.style('stroke-dasharray','5')
.on("mouseover", addconfetti)
.on("mouseout", removeconfetti)
function addconfetti(event,d){
p.enter().append("polyline")
.data(greenconfetti) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(100,147,83)')
.style("stroke-width", '0')
.style("stroke", 'none')
p.enter().append("polyline")
.data(purpleconfetti) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(203,13,119)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(yellowconfetti) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(234,179,50)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
}
function removeconfetti(event,d){
svg.selectAll('polyline.party').remove()
}
//drawing Full
p.enter().append("polyline")
.data(drone3outline) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", function(d) {return d}) //The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", 'white')
.style('fill-opacity','0')
.style("stroke", 'orange')
.style('stroke-dasharray','5')
.on("mouseover", addfull)
.on("mouseout", removefull)
function addfull(event,d){
p.enter().append("polyline")
.data(greenfull) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(100,147,83)')
.style("stroke-width", '0')
.style("stroke", 'none')
p.enter().append("polyline")
.data(pinkfull) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(203,13,119)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(yellowfull) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'rgb(234,179,50)')
.style("stroke-width", '0.01')
.style("stroke", 'none')
p.enter().append("polyline")
.data(orangefull) //get data to define path
.enter()
.append('polyline')
.attr('class','party')
.attr("points", function(d) {return d})
.style("fill", 'orange')
.style("stroke-width", '0.01')
.style("stroke", 'none')
}
function removefull(event,d){
svg.selectAll('polyline.party').remove()
}
function polyline(data, sfill, sOpac, sW, stroke){
g.enter().append("polyline")
.data(data) //get data to define path
.enter() //there are more data than elements, this selects them
.append('polyline')
.attr("points", function (d){return d})//The d attribute defines a path to be drawn, only applies to appended elements
.style("fill", sfill)
.style('stroke-opacity',sOpac)
.style("stroke-width", sW)
.style("stroke", stroke)
}
function addText(event,d){
svg
svg//draw text
.append("text") //appends path to data
.attr('class','spots')
.attr('x',projection([d.Long,d.Lat])[0])
.attr("y",projection([d.Long,d.Lat])[1])
.attr('fill', 'white')
.style('font-family','Futura')
.style("font-size", "24px")
.text(d.Name)
svg
svg//draw text
.append("text") //appends path to data
.attr('class','spots')
.attr('x',50)
.attr("y",300)
.attr('fill', 'Orange')
.style('font-family','Futura Hv Bt')
.style("font-size", "16px")
.text(d.Description)
var wrap = svg.selectAll("text.spots")
.each(function(d, i) { wrap_text(d3.select(this), 100) });
}
function removeText(){
svg.selectAll('text.spots').remove()
}
return svg.node();
}