Credit

new Cesium.Credit(html, showOnScreen)

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

Members

readonlyelement : HTMLElement

获取凭证元素

readonlyhtml : String

凭证内容

readonlyshowOnScreen : Boolean

证应该显示在屏幕上还是弹窗中。

Methods

staticCesium.Credit.clone(credit)Credit

复制凭证实例.
Name Type Description
credit Credit optional 要复制的凭证.
Returns:
新的凭证实例与所提供的实例重复。(如果凭证未定义则返回未定义)

staticCesium.Credit.equals(left, right)Boolean

如果凭证相等,则返回true
Name Type Description
left Credit 左边第一个凭证
right Credit 右边第二个凭证
Returns:
左右相等则返回true,否则返回false

equals(Credit)Boolean

如果凭证相等,则返回true
Name Type Description
Credit Credit 凭证之间比较
Returns:
如果左右相等则返回true,否则返回false