/** * @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 bubble layer tooltips. */ export interface BubbleTooltipContext { /** * The original data item used to create the bubble. */ dataItem: any; /** * The index of the bubble layer in the map. */ layerIndex: number; /** * The location of the bubble. */ location: Location; /** * The numerical value of the bubble */ value: number; }