UNPKG

@progress/kendo-react-map

Version:
32 lines (31 loc) 968 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, MapPanEndEvent } from '@progress/kendo-charts'; import { Map } from '../Map.js'; import { BaseEvent } from './base-event.js'; /** * Fires after the map viewport has been moved. */ export declare class PanEndEvent extends BaseEvent implements MapPanEndEvent { /** * 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: MapPanEndEvent, target: Map); }