onclick事件,但不执行追加代码

q35jwt9p  于 2021-09-13  发布在  Java
关注(0)|答案(0)|浏览(153)

在下面的代码中,触发onclick事件,但不追加圆圈。我不知道为什么。
可能是因为下面的变量?
代码段:

.on("click", function (event, d) {
      let center = pathMap.centroid(d.geometry);
      console.log(center);

      mouse
        .append("circle")
        .attr("cx", center[0])
        .attr("cy", center[1])
        .attr("r", 20)
        .attr("fill", "red");

      mutable selected = d.properties;

资料来源:https://observablehq.com/@statistikzh/Leerwohnugszahlung

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题