UNPKG

@progress/kendo-angular-map

Version:
22 lines (21 loc) 704 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { BaseEvent } from './base-event'; /** * Fired when the map zoom level has changed. */ export class ZoomEndEvent extends BaseEvent { /** * The source DOM event instance */ originalEvent; /** * @hidden */ constructor(e, sender) { super(sender); this.originalEvent = e.originalEvent; } }