{
d3.xml('https://upload.wikimedia.org/wikipedia/commons/f/f9/Bavaria_AB_%28district%29.svg')
.then(data => {
document.body.append(data.documentElement);
});
let mysvg = d3.select("svg");
mysvg.select("polygon").style("fill", "yellow");
return mysvg.node();
}