Credit

new Cesium.Credit (html, showOnScreen )

信用包含与如何在屏幕上显示某些内容的归属/信用有关的数据。
Name Type Default Description
html String 表示 html 代码片段的字符串
showOnScreen Boolean false 可选 如果为真,信用将在主信用容器中可见。否则会出现在弹窗中
Throws:
Example:
//Create a credit with a tooltip, image and link
const credit = new Cesium.Credit('<a href="https://cesium.com/" target="_blank"><img src="/images/cesium_logo.png" title="Cesium"/></a>');

Members

readonly element : HTMLElement

获取信用元素

readonly html : String

信用内容

showOnScreen : Boolean

信用应该显示在屏幕上还是灯箱中

Methods

static Cesium.Credit.clone ( credit ) Credit

复制 Credit 实例。
Name Type Description
credit Credit 可选 要复制的信用。
Returns:
一个新的 Credit 实例,与所提供的实例重复。 (如果信用未定义,则返回未定义)

static Cesium.Credit.equals (left, right) Boolean

如果学分相等则返回真
Name Type Description
left Credit 第一个信用
right Credit 第二个信用
Returns:
如果左右相等,则为 true ,否则为 false

equals (credit) Boolean

如果学分相等则返回真
Name Type Description
credit Credit 要比较的信用。
Returns:
如果左右相等,则为 true ,否则为 false