mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-25 16:02:50 +00:00
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import {ReactElement, Ref} from 'react';
|
|
import type {MapRef, StaticMapProps} from './static-map';
|
|
import MapController, {MjolnirEvent} from '../utils/map-controller';
|
|
|
|
type State = {
|
|
isLoaded: boolean,
|
|
isDragging: boolean,
|
|
isHovering: boolean
|
|
};
|
|
|
|
export type MapEvent = MjolnirEvent & {
|
|
point: Array<number>,
|
|
lngLat: Array<number>,
|
|
features?: Array<any>
|
|
};
|
|
|
|
export type InteractiveMapProps = StaticMapProps & Partial<{
|
|
onViewStateChange: Function,
|
|
onViewportChange: Function,
|
|
onInteractionStateChange: Function,
|
|
onHover: (evt: MapEvent) => void,
|
|
onClick: (evt: MapEvent) => void,
|
|
onNativeClick: (evt: MapEvent) => void,
|
|
onDblClick: (evt: MapEvent) => void,
|
|
onContextMenu: (evt: MapEvent) => void,
|
|
onMouseDown: (evt: MapEvent) => void,
|
|
onMouseMove: (evt: MapEvent) => void,
|
|
onMouseUp: (evt: MapEvent) => void,
|
|
onTouchStart: (evt: MapEvent) => void,
|
|
onTouchMove: (evt: MapEvent) => void,
|
|
onTouchEnd: (evt: MapEvent) => void,
|
|
onMouseEnter: (evt: MapEvent) => void,
|
|
onMouseLeave: (evt: MapEvent) => void,
|
|
onMouseOut: (evt: MapEvent) => void,
|
|
onWheel: (evt: MapEvent) => void,
|
|
|
|
transitionDuration: number,
|
|
transitionInterpolator: any,
|
|
transitionInterruption: number,
|
|
transitionEasing: Function,
|
|
|
|
scrollZoom: boolean,
|
|
dragPan: boolean,
|
|
dragRotate: boolean,
|
|
doubleClickZoom: boolean,
|
|
touchZoom: boolean,
|
|
touchRotate: boolean,
|
|
keyboard: boolean,
|
|
touchAction: string,
|
|
eventRecognizerOptions: any,
|
|
clickRadius: number,
|
|
interactiveLayerIds: Array<string>,
|
|
getCursor: (state: State) => string,
|
|
controller: MapController,
|
|
ref: Ref<MapRef>
|
|
}>;
|
|
|
|
export default function InteractiveMap(props: InteractiveMapProps): ReactElement;
|