mirror of https://gitee.com/antv-l7/antv-l7
feat: 修复 l7utils image 循环引用
This commit is contained in:
parent
f0efd3868f
commit
6adc0a6f81
|
@ -1,7 +1,7 @@
|
||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
// tslint:disable
|
// tslint:disable
|
||||||
import devicePixelRatio from './devicePixelRatio';
|
import devicePixelRatio from './devicePixelRatio';
|
||||||
import { document } from './document';
|
// import { document } from './document';
|
||||||
import * as Mixin from './util/mixin';
|
import * as Mixin from './util/mixin';
|
||||||
|
|
||||||
declare let my: any;
|
declare let my: any;
|
||||||
|
@ -29,18 +29,18 @@ function registerCanvas(c, id: string) {
|
||||||
|
|
||||||
canvas.focus = function() {};
|
canvas.focus = function() {};
|
||||||
canvas.blur = function() {};
|
canvas.blur = function() {};
|
||||||
|
// Tip: 小程序中无法动态注册事件
|
||||||
|
// canvas.addEventListener = function(type, listener, options = {}) {
|
||||||
|
// document.addEventListener(type, listener, options);
|
||||||
|
// };
|
||||||
|
|
||||||
canvas.addEventListener = function(type, listener, options = {}) {
|
// canvas.removeEventListener = function(type, listener) {
|
||||||
document.addEventListener(type, listener, options);
|
// document.removeEventListener(type, listener);
|
||||||
};
|
// };
|
||||||
|
|
||||||
canvas.removeEventListener = function(type, listener) {
|
// canvas.dispatchEvent = function(event: any) {
|
||||||
document.removeEventListener(type, listener);
|
// document.dispatchEvent(event);
|
||||||
};
|
// };
|
||||||
|
|
||||||
canvas.dispatchEvent = function(event: any) {
|
|
||||||
document.dispatchEvent(event);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 异步注册2Dcanvas
|
// 异步注册2Dcanvas
|
||||||
|
@ -73,18 +73,18 @@ function registerCanvas2D(ctx, id: string) {
|
||||||
};
|
};
|
||||||
canvas2D.focus = function() {};
|
canvas2D.focus = function() {};
|
||||||
canvas2D.blur = function() {};
|
canvas2D.blur = function() {};
|
||||||
|
// Tip: 小程序中无法动态注册事件
|
||||||
|
// canvas2D.addEventListener = function(type, listener, options = {}) {
|
||||||
|
// document.addEventListener(type, listener, options);
|
||||||
|
// };
|
||||||
|
|
||||||
canvas2D.addEventListener = function(type, listener, options = {}) {
|
// canvas2D.removeEventListener = function(type, listener) {
|
||||||
document.addEventListener(type, listener, options);
|
// document.removeEventListener(type, listener);
|
||||||
};
|
// };
|
||||||
|
|
||||||
canvas2D.removeEventListener = function(type, listener) {
|
// canvas2D.dispatchEvent = function(event: any) {
|
||||||
document.removeEventListener(type, listener);
|
// document.dispatchEvent(event);
|
||||||
};
|
// };
|
||||||
|
|
||||||
canvas2D.dispatchEvent = function(event: any) {
|
|
||||||
document.dispatchEvent(event);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 异步获取3Dcanvas
|
// 异步获取3Dcanvas
|
||||||
|
|
Loading…
Reference in New Issue