UNPKG

@progress/kendo-react-map

Version:
32 lines (31 loc) 956 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, MapPanEvent } from '@progress/kendo-charts'; import { Map } from '../Map.js'; import { BaseEvent } from './base-event.js'; /** * Fires while the map viewport is being moved. */ export declare class PanEvent extends BaseEvent implements MapPanEvent { /** * The map origin (top left or NW corner). */ origin: Location; /** * The current map center. */ center: Location; /** * The source DOM event instance */ originalEvent: any; /** * @hidden */ constructor(e: MapPanEvent, target: Map); }