interface HTMLMapElement
implements HTMLElement
import { type HTMLMapElement } from "https://deno.land/x/evt@v2.4.20/lib/types/lib.dom.ts";
Provides special properties and methods (beyond those of the regular object HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of map elements.
Properties
readonly
areas: HTMLCollectionRetrieves a collection of the area objects defined for the given map object.
Methods
addEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLMapElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof HTMLElementEventMap>(): void
type: K,
listener: (this: HTMLMapElement, ev: HTMLElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,