Files
coopgo/node_modules/ol/MapEvent.d.ts
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

28 lines
1.0 KiB
TypeScript

export default MapEvent;
/**
* @classdesc
* Events emitted as map events are instances of this type.
* See {@link module:ol/PluggableMap~PluggableMap} for which events trigger a map event.
*/
declare class MapEvent extends Event {
/**
* @param {string} type Event type.
* @param {import("./PluggableMap.js").default} map Map.
* @param {?import("./PluggableMap.js").FrameState} [opt_frameState] Frame state.
*/
constructor(type: string, map: import("./PluggableMap.js").default, opt_frameState?: import("./PluggableMap.js").FrameState | null | undefined);
/**
* The map where the event occurred.
* @type {import("./PluggableMap.js").default}
* @api
*/
map: import("./PluggableMap.js").default;
/**
* The frame state at the time of the event.
* @type {?import("./PluggableMap.js").FrameState}
* @api
*/
frameState: import("./PluggableMap.js").FrameState | null;
}
import Event from "./events/Event.js";
//# sourceMappingURL=MapEvent.d.ts.map