new Credit(text, imageUrl, link)
        A credit contains data pertaining to how to display attributions/credits for certain content on the screen.
    
    
    
    
    
    
        
| Name | Type | Description | 
|---|---|---|
| text | String | optional The text to be displayed on the screen if no imageUrl is specified. | 
| imageUrl | String | optional The source location for an image | 
| link | String | optional A URL location for which the credit will be hyperlinked | 
Example:
//Create a credit with a tooltip, image and link
var credit = new Cesium.Credit('Cesium', '/images/cesium_logo.png', 'http://cesiumjs.org/');
        Source: 
        Core/Credit.js, line 29
    
    
Members
- 
    imageUrl :String
- 
    
    The source location for the image.Source: Core/Credit.js, line 81
- 
    link :String
- 
    
    A URL location for the credit hyperlinkSource: Core/Credit.js, line 92
- 
    text :String
- 
    
    The credit textSource: Core/Credit.js, line 70
Methods
- 
    staticCredit.equals(left, left) → Boolean
- 
    
    Returns true if the credits are equalName Type Description leftCredit The first credit leftCredit The second credit Returns:trueif left and right are equal,falseotherwise.Source: Core/Credit.js, line 136
- 
    equals(credits) → Boolean
- 
    
    Returns true if the credits are equalName Type Description creditsCredit The credit to compare to. Returns:trueif left and right are equal,falseotherwise.Source: Core/Credit.js, line 149
- 
    hasImage() → Boolean
- 
    
    Returns true if the credit has an imageUrlReturns:Source: Core/Credit.js, line 116
- 
    hasLink() → Boolean
- 
    
    Returns true if the credit has a linkReturns:Source: Core/Credit.js, line 125
