UNPKG

mapillary-js

Version:

A WebGL interactive street imagery library

52 lines (43 loc) 578 B
/** * Enumeration for alignments * @enum {number} * @readonly */ export enum Alignment { /** * Align to bottom */ Bottom, /** * Align to bottom left */ BottomLeft, /** * Align to bottom right */ BottomRight, /** * Align to center */ Center, /** * Align to left */ Left, /** * Align to right */ Right, /** * Align to top */ Top, /** * Align to top left */ TopLeft, /** * Align to top right */ TopRight, }