@progress/kendo-angular-map
Version:
Kendo UI Map for Angular
19 lines (18 loc) • 646 B
JavaScript
/**-----------------------------------------------------------------------------------------
* 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 is reset.
*
* This typically occurs on initial load and after a zoom/center change.
*/
export class ResetEvent extends BaseEvent {
/**
* @hidden
*/
constructor(_, sender) {
super(sender);
}
}