Adding own logo to the bottom of the cesium application

I would like to add my own logo at the bottom of the cesium application. I want to know in which file in cesium should i wana make changes.

Hello,

You can do this by adding a new default Credit to the CreditDisplay. Here is a code example:

var viewer = new Cesium.Viewer(‘cesiumContainer’);
var credit = new Cesium.Credit(‘Title’, ‘…/images/facility.gif’, ‘http://www.cesiumjs.org’);

viewer.scene.frameState.creditDisplay.addDefaultCredit(credit);

``

Best,

Hannah

Thanks. That works.