mapillary-js
Version:
WebGL JavaScript library for displaying street level imagery from mapillary.com
15 lines (11 loc) • 348 B
text/typescript
import {Tag, TagOperation} from "../../../Component";
export type InteractionCursor = "crosshair" | "move" |"nesw-resize" | "nwse-resize";
export interface IInteraction {
cursor?: InteractionCursor;
offsetX: number;
offsetY: number;
operation: TagOperation;
tag: Tag;
vertexIndex?: number;
}
export default IInteraction;