我想在mouseover事件上调整矩形形状的大小,因此我想用它们特定的调整大小指针来拉伸它们的四个角。但是对于东北拉伸矩形,它显示了nw-resize指针。但是,我想要东北拉伸矩形想要显示ne-resize指针。
这是我的代码,
anchor.on("mouseover", function() {
var layer = this.getLayer();
document.body.style.cursor = "ne-resize";
document.body.style.cursor = "nw-resize";
this.setStrokeWidth(4);
fill: "red";
strokeWidth: 2;
radius: 8;
layer.draw();
});
提前致谢。