tileLoad

The event fired to indicate that a tile's content was loaded.

The loaded Cesium3DTile is passed to the event listener.

This event is fired during the tileset traversal while the frame is being rendered so that updates to the tile take effect in the same frame. Do not create or modify Cesium entities or primitives during the event listener.

tileset.tileLoad.addEventListener(function(tile) {
console.log('A tile was loaded.');
});

See also