{
const svg = d3.create('svg')
.attr('width', width)
.attr('height', height);
let g = svg.append('g')
g.append('rect')
.attr('id','testzone')
.attr('x',width/4)
.attr('y',height/4)
.attr('width',width/2)
.attr('height',height/2)
.attr('fill','#80000080')
let g2 = svg.append('g')
.append("svg:image")
.attr("xlink:href", image)
.attr("width", 380)
.attr("height", 380)
.attr("x", 0)
.attr("y",10);
return svg.node();
}