UNPKG

@syncfusion/ej2-maps

Version:

The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options

227 lines (225 loc) 4.68 kB
/** * Maps constants doc */ /** * Specifies the maps load event name. * * @private */ export const load: string = 'load'; /** * Specifies the maps loaded event name. * * @private */ export const loaded: string = 'loaded'; /** * Specifies the maps click event name. * * @private */ export const click: string = 'click'; /** * Specifies the maps onclick event name. * * @private */ export const onclick: string = 'onclick'; /** * Specifies the maps right click event name. * * @private */ export const rightClick: string = 'rightClick'; /** * Specifies the maps double click event name. * * @private */ export const doubleClick: string = 'doubleClick'; /** * Specifies the maps resize event name. * * @private */ export const resize: string = 'resize'; /** * Specifies the maps tooltip event name. * */ export const tooltipRender: string = 'tooltipRender'; /** * Specifies the map shape selected event. * */ export const shapeSelected: string = 'shapeSelected'; /** * Specifies the maps shape highlight event. * */ export const shapeHighlight: string = 'shapeHighlight'; /** * Specifies the maps mouse move event name. * * @private */ export const mousemove: string = 'mousemove'; /** * Specifies the maps mouse up event name. * * @private */ export const mouseup: string = 'mouseup'; /** * Specifies the maps mouse down event name. * * @private */ export const mousedown: string = 'mousedown'; /** * Specifies the maps layer rendering event name. * * @private */ export const layerRendering: string = 'layerRendering'; /** * Specifies the maps shape rendering event name. * * @private */ export const shapeRendering: string = 'shapeRendering'; /** * Specifies the maps marker rendering event name. * * @private */ export const markerRendering: string = 'markerRendering'; /** * Specifies the maps cluster rendering event name. * * @private */ export const markerClusterRendering: string = 'markerClusterRendering'; /** * Specifies the maps marker click event name. * * @private */ export const markerClick: string = 'markerClick'; /** * Specifies the maps marker drag start event name. * * @private */ export const markerDragStart: string = 'markerDragStart'; /** * Specifies the maps marker drag end event name. * * @private */ export const markerDragEnd: string = 'markerDragEnd'; /** * Specifies the maps cluster click event name. * * @private */ export const markerClusterClick: string = 'markerClusterClick'; /** * Specifies the maps marker mouse move event name. * * @private */ export const markerMouseMove: string = 'markerMouseMove'; /** * Specifies the maps mouse move event name. * * @private */ export const mouseMove: string = 'mouseMove'; /** * Specifies the maps cluster mouse move event name. * * @private */ export const markerClusterMouseMove: string = 'markerClusterMouseMove'; /** * Specifies the maps data label rendering event name. * * @private */ export const dataLabelRendering: string = 'dataLabelRendering'; /** * Specifies the maps bubbleRendering event name. * * @private */ export const bubbleRendering: string = 'bubbleRendering'; /** * Specifies the maps bubble click event name. * * @private */ export const bubbleClick: string = 'bubbleClick'; /** * Specifies the maps bubble mouse move event name. * * @private */ export const bubbleMouseMove: string = 'bubbleMouseMove'; /** * Specifies the maps animation complete event name. * * @private */ export const animationComplete: string = 'animationComplete'; /** * Specifies the maps legend rendering event name. * * @private */ export const legendRendering: string = 'legendRendering'; /** * Specifies the maps annotation rendering event name. * * @private */ export const annotationRendering: string = 'annotationRendering'; /** * Specifies the maps item selection event name. * * @private */ export const itemSelection: string = 'itemSelection'; /** * Specifies the maps pan complete event name. * * @private */ export const panComplete: string = 'panComplete'; /** * Specifies the maps zoom complete event name. * * @private */ export const zoomComplete: string = 'zoomComplete'; /** * Specifies the maps item highlight event name. * */ export const itemHighlight: string = 'itemHighlight'; /** * Specifies the maps before print event name. */ export const beforePrint: string = 'beforePrint'; /** * Specifies the maps zoom in event name. */ export const zoomIn: string = 'zoomIn'; /** * Specifies the maps zoom out event name. */ export const zoomOut: string = 'zoomOut'; /** * Specifies the maps pan event name. */ export const pan: string = 'pan';