map = {
const map = eurostatmap
.map("choropleth")
.title("Grid cartogram")
.subtitle("test")
.stat({
eurostatDatasetCode: "nama_10r_3gdp",
unitText: "euro per inhabitant",
filters: { TIME: "2021", UNIT: "EUR_HAB" }
})
.gridCartogram(true)
.gridCartogramShape("hexagon")
.gridCartogramCellPadding(8)
.gridCartogramPositions(
`
,IS, , , ,NO,SE,FI, , , , ,
, , , , , , , ,EE, , , ,
, , , , , , , ,LV, , , ,
,IE,UK, , ,DK, ,LT, , , , ,
, , , ,NL,DE,PL, , , , , ,
, , ,BE,LU,CZ,SK,UA, , , , ,
, ,FR,CH,LI,AT,HU,RO,MD, , , ,
,PT,ES, ,IT,SI,HR,RS,BG, , , ,
, , , , , ,BA,ME,MK, , , ,
, , , , , , ,AL,EL,TR, , ,
, , , ,MT, , , , ,CY, , , `
)
.numberOfClasses(6)
.nutsLevel(0)
.legend({ x: 10, y: 120, title: "Test", boxOpacity: 0, barChart: false })
.build();
}