You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
662 B
JavaScript
29 lines
662 B
JavaScript
/**
|
|
* Determines how opaque and translucent parts of billboards, points, and labels are blended with the scene.
|
|
*
|
|
* @enum {Number}
|
|
*/
|
|
var BlendOption = {
|
|
/**
|
|
* The billboards, points, or labels in the collection are completely opaque.
|
|
* @type {Number}
|
|
* @constant
|
|
*/
|
|
OPAQUE: 0,
|
|
|
|
/**
|
|
* The billboards, points, or labels in the collection are completely translucent.
|
|
* @type {Number}
|
|
* @constant
|
|
*/
|
|
TRANSLUCENT: 1,
|
|
|
|
/**
|
|
* The billboards, points, or labels in the collection are both opaque and translucent.
|
|
* @type {Number}
|
|
* @constant
|
|
*/
|
|
OPAQUE_AND_TRANSLUCENT: 2,
|
|
};
|
|
export default Object.freeze(BlendOption);
|