mapillary-js
Version:
A WebGL interactive street imagery library
14 lines (11 loc) • 349 B
text/typescript
import { Tag } from "../tag/Tag";
import { TagOperation } from "../TagOperation";
export type InteractionCursor = "crosshair" | "move" | "nesw-resize" | "nwse-resize";
export interface TagInteraction {
cursor?: InteractionCursor;
offsetX: number;
offsetY: number;
operation: TagOperation;
tag: Tag;
vertexIndex?: number;
}