antvis / L7Draw

L7 绘制控件
MIT License
48 stars 31 forks source link

fix: 修复 map 在 form 中点击 control button 会触发 submit 的问题 #177

Closed Richard-Choooou closed 4 months ago

Richard-Choooou commented 6 months ago

PR includes

Screenshot

Before After
Richard-Choooou commented 6 months ago

遇到同样的问题可以使用以下方式临时解决。

import { DrawControl } from '@antv/l7-draw'

class MyDrawControl extends DrawControl {
    initBtn(type: any) {
        const btn = super.initBtn(type);
        btn.type = 'button'
        return btn
    }
}