[GIS] Adding own logo to the bottom of the cesium application

cesiumcsshtml5

I would like to add my own logo at the bottom of the cesium application. I would like to know which file in cesium should use to make this possible.

Best Answer

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)
Related Question