UNPKG

@progress/kendo-angular-map

Version:
24 lines (23 loc) 791 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'; /** * Fired when the map zoom level is about to change. * * Cancelling the event will 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; } }