viewof map = {
let myRegion = myIPRegion;
let text = await FileAttachment("ES-CCAAs.svg").text();
const document = new DOMParser().parseFromString(text, "image/svg+xml");
const svg = d3.select(document.documentElement).remove();
svg
.attr("width", isMobile ? myWidth - 10 : `${Math.min(460, myWidth - 10)}px`)
.attr("class", "cartogram")
.attr("overflow", "visible");
svg.append(defs);
const mapGroup = svg.select("g#regions-group");
const regionsGroups = mapGroup.selectAll("g").attr("class", "region-group");
const context = svg.select("g#context");
context
.selectAll("line")
.style("stroke", contextColor)
.style("stroke-width", contextWidth);
const myRegionGroup = mapGroup
.select(`g#${myRegion}`)
.raise()
.classed("myRegion", true);
// Basic initialization styling (hiding things, etc)
mapGroup.selectAll("circle").attr("class", "auxCircles").style("opacity", 0);
mapGroup.selectAll("polygon").attr("class", "region-hex");
// DATA BINDING - to the groups
// http://jsfiddle.net/gyc4hg59/5/
const myMap = svg.selectAll(".region-group").datum(function (d) {
return { region_code: d3.select(this).attr("id") };
});
myMap.data(data, function (d, i) {
return d.region_code;
});
myMap.each(function (d, i) {
const myCircle = d3.select(this).select(".auxCircles");
const xPosit = +myCircle.attr("cx");
const yPosit = +myCircle.attr("cy");
//Adding x-y position to data, for convenience
d["xGeo"] = xPosit;
d["yGeo"] = yPosit;
});
// Hex: filling by data binded
const nodes = regionsGroups.select(".region-hex");
nodes.style("fill-opacity", fillOpacityBasicState);
// Texts: region codes
const textsNodes = regionsGroups
.append("text")
.text((d) => d.region_code)
.attr("x", (d) => d.xGeo)
.attr("y", (d) => d.yGeo)
.style("font-size", isMobile ? "0.7rem" : "0.6rem")
.style("text-anchor", "middle")
.style("alignment-baseline", "central")
.style("dominant-baseline", "central")
.attr("filter", (d) => (d.private ? "url(#solid)" : ""));
// Color coding
nodes
.style("fill", "url(#Ilunion)")
.style("fill", (d) => (d.private ? colorPrivate : colorPublic))
.style("fill", function (d) {
if (d.adjudicataria_clean === "ILUNION Emergencias") {
return "url(#Ilunion)";
} else if (
d.adjudicataria_clean === "Serveo Servicios (antigua Ferrovial)"
) {
return "url(#Ferrovial)";
} else if (d.adjudicataria_clean === "Avilon Center") {
return "url(#Avilon)";
} else {
return d.private ? colorPrivate : colorPublic;
}
})
.style("stroke", contextColor)
.style("stroke-width", 2);
textsNodes.style("fill", "white");
// Update map cell value
const element = svg.node();
element.value = {
myRegion
};
////////////////////
///// BASIC INTERACTIONS
////////////////////
regionsGroups
.style("cursor", "pointer")
.on("mouseover", onMouseOver)
.on("mouseout", onMouseOut)
.on("click", onMouseClick);
function onMouseClick(event, d) {
// Update region selection
const myNewRegion = d.region_code;
d3.selectAll(".myRegion").classed("myRegion", false);
d3.selectAll(`.region-group[id=${myNewRegion}]`)
.raise()
.classed("myRegion", true);
// UPDATE CELL VALUE
element.value = {
myRegion: myNewRegion
};
element.dispatchEvent(new CustomEvent("input"));
}
return svg.node();
}