world = {
let map = eurostatmap
.map("ch")
.svgId("world")
.width(width)
.height(height)
.geo("WORLD")
.colorFun(d3.interpolateBlues)
.bottomText(false)
.projectionFunction(projections[projectionIndex].value())
.frameStroke("none");
map.statData().setData(stats);
map.build();
return map;
}