Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当折线设置为可编辑时,有没有办法更改默认用作顶点句柄的白色方块的样式:true?
我可以看到更改折线的笔触会影响那些手柄正方形,但我想要么改变手柄的形状(例如变成圆形),要么替换图像。
我设法找到的唯一方法是直接操作与这些标记相对应的 DOM 元素。例如,可以使用它们来选择它们
$('div').filter(function() { return $(this).css('width') == '11px'; })
可能更可靠的方法是从 $('.gm-style') 元素开始遍历 DOM 树。