UNPKG

@progress/kendo-react-map

Version:
26 lines (25 loc) 784 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Location } from '../index.js'; /** * Context object for shape layer tooltips. */ export interface ShapeTooltipContext { /** * The original GeoJSON data item used to create the shape. */ dataItem: any; /** * The index of the shape layer in the map. */ layerIndex: number; /** * The location (center point) of the shape. */ location: Location; }