@progress/kendo-react-map
Version:
KendoReact Map package
37 lines (36 loc) • 1.1 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { MapLayer, MapShapeCreatedEvent, Location } from '@progress/kendo-charts';
import { Element } from '@progress/kendo-drawing';
import { Map } from '../Map.js';
import { BaseEvent } from './base-event.js';
/**
* Fires when a shape is created, but is not rendered yet.
*/
export declare class ShapeCreatedEvent extends BaseEvent implements MapShapeCreatedEvent {
/**
* The shape layer instance.
*/
layer: MapLayer;
/**
* The shape instance.
*/
shape: Element;
/**
* The original data item for this Shape.
*/
dataItem: any;
/**
* The shape location
*/
location: Location;
/**
* @hidden
*/
constructor(e: any, target: Map);
}