geoview-core - v2.2.0
    Preparing search index...

    Function watchHtmlElementRemoval

    • Sets up a MutationObserver to monitor when a specific DOM element (e.g., a div container) is removed from the document.

      When the element is removed, it triggers a cleanup callback and disconnects the observer to prevent memory leaks.

      Parameters

      • key: string

        A unique identifier for the element, used to manage observer references

      • element: HTMLElement

        The DOM element to monitor for removal from the DOM tree

      • onHTMLElementRemoved: (key: string) => void

        The callback executed once the given DOM element gets removed from the DOM tree

      Returns void