Sha256: 6d01a2c2c971a20143905516aa41d7901735007d26140edab4e838c61c8da096
Contents?: true
Size: 945 Bytes
Versions: 1
Compression:
Stored size: 945 Bytes
Contents
/*global define*/ define(['../Core/Enumeration'], function(Enumeration) { "use strict"; /** * An enumeration describing how to draw a label. * * @exports LabelStyle * * @see Label#setStyle */ var LabelStyle = { /** * Fill the text of the label, but do not outline. * * @type {Enumeration} * @constant * @default 0 */ FILL : new Enumeration(0, 'FILL'), /** * Outline the text of the label, but do not fill. * * @type {Enumeration} * @constant * @default 1 */ OUTLINE : new Enumeration(1, 'OUTLINE'), /** * Fill and outline the text of the label. * * @type {Enumeration} * @constant * @default 2 */ FILL_AND_OUTLINE : new Enumeration(2, 'FILL_AND_OUTLINE') }; return LabelStyle; });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.18.0 | app/assets/javascripts/Scene/LabelStyle.js |