mapillary-js
Version:
WebGL JavaScript library for displaying street level imagery from mapillary.com
16 lines (14 loc) • 314 B
text/typescript
/**
* Interface for the options that define the behavior and
* appearance of the outline create tag.
*
* @interface
*/
export interface IOutlineCreateTagOptions {
/**
* Text color as hexadecimal number.
* @default 0xFFFFFF
*/
color?: number;
}
export default IOutlineCreateTagOptions;