mirror of https://gitee.com/antv-l7/antv-l7
fix: 修复 mouseup 失效 (#1114)
This commit is contained in:
parent
a6ab68a12e
commit
db1940be1f
|
@ -214,7 +214,8 @@ export default class PickingService implements IPickingService {
|
||||||
if (
|
if (
|
||||||
t - this.lastPickTime > 10 ||
|
t - this.lastPickTime > 10 ||
|
||||||
target.type === 'contextmenu' ||
|
target.type === 'contextmenu' ||
|
||||||
target.type === 'click'
|
target.type === 'click' ||
|
||||||
|
target.type === 'mouseup'
|
||||||
) {
|
) {
|
||||||
await this.pickingLayers(target);
|
await this.pickingLayers(target);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue