我有 (function () {
if (typeof window.CustomEvent === "function") return false;
function CustomEvent(event, params) {
params = params || { bubbles: false, cancelable: false, detail: undefined };
var evt = document.createEvent('CustomEvent');
evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
return evt;
}
CustomEvent.prototype = window.Event.prototype;
window.CustomEvent = CustomEvent;
})();
和地图的子组件Parent
。我正在将leaflet.js分配给Map
内部的leafMap
变量,并且可以从Map
内部调用leafMap
方法。
但是如何从父级调用“映射”方法?
Map