chart = {
const width = 1075,
height = 900;
const svg = d3.create("svg")
.attr("viewBox", [-60, 0, width, height]);
var projection = d3
.geoMercator()
.fitSize([width - 50, height - 50], Arizona);
var path = d3.geoPath().projection(projection);
var path2 = d3.geoPath().projection(projection);
var g = svg.append("g").attr("id", "paths");
g.selectAll("path")
.data(Score.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.attr("fill", d => color(d.properties.Base_Base))
.style('fill-opacity','.5')
.style("stroke-width", "1")
.style("stroke", "#ccc")
svg.selectAll('text')
.data(Score.features)
.enter()
.append('text')
.attr('x','160')
.attr('y',function(d,i){return i*15+10})
.attr('font-size','.65em')
.attr('text-anchor','end')
.text(function(d){return d.properties.Name_Name})
var g = svg.append("g").attr("id", "paths");
g.selectAll("path")
.data(Arizona.features)
.enter()
.append("path")
.attr('class','outlines')
.attr("d", path)
.style("fill", "white")
.style('fill-opacity','0')
.style("stroke-width", "1")
.style("stroke", "#ccc")
return svg.node();
}