@progress/kendo-angular-map
Version:
Kendo UI Map for Angular
31 lines (30 loc) • 1.05 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, MapShapeClickEvent } from '@progress/kendo-charts';
import { Element } from '@progress/kendo-drawing';
import { MapComponent } from '../map.component';
import { BaseEvent } from './base-event';
/**
* Arguments for the `shapeClick` event.
* Fires when a shape is clicked or tapped.
*/
export declare class ShapeClickEvent extends BaseEvent implements MapShapeClickEvent {
/**
* The shape layer instance.
*/
layer: MapLayer;
/**
* The shape instance.
*/
shape: Element;
/**
* The source DOM event instance.
*/
originalEvent: any;
/**
* @hidden
*/
constructor(e: MapShapeClickEvent, sender: MapComponent);
}