@progress/kendo-angular-map
Version:
Kendo UI Map for Angular
28 lines (27 loc) • 1.07 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { MapLayer, MapMarker, MapMarkerCreatedEvent } from '@progress/kendo-charts';
import { MapComponent } from '../map.component';
import { PreventableEvent } from './preventable-event';
/**
* Arguments for the `markerCreated` event.
* Fires once the map has created a marker, and just before the map displays it.
*
* Cancelling the event prevents displaying the marker.
*/
export declare class MarkerCreatedEvent extends PreventableEvent implements MapMarkerCreatedEvent {
/**
* The marker instance.
*/
marker: MapMarker;
/**
* The marker layer instance.
*/
layer: MapLayer;
/**
* @hidden
*/
constructor(e: MapMarkerCreatedEvent, sender: MapComponent);
}