UNPKG

@progress/kendo-angular-map

Version:
24 lines (23 loc) 823 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from './preventable-event'; /** * Arguments for the `zoomStart` event. * Fires when the map zoom level is about to change. * Cancel the event to prevent the user action. */ export class ZoomStartEvent extends PreventableEvent { /** * The source DOM event instance. */ originalEvent; /** * @hidden */ constructor(e, sender) { super(sender); this.originalEvent = e.originalEvent; } }