Tileset loading error

Getting error while trying to load tileset locally.Only some bits of tiles are loading.At start of loading total tileset is loading but after complete page loading most tiles got vanished.
can anyone help me with the error.

Cesium.js:451 Required property geometricError is undefined for this tile. Using parent's geometric error instead.

Cesium uses the geometric error to figure out when to load child tiles. This is described in more detail in the spec here.

If your tileset doesn’t define the geometric error at each level Cesium might be assuming it’s sufficient to render the parent tiles and it doesn’t need to load any of the children. So you should try to define the geometric error, and uou can also tweak this behavior with the screen space error on the tileset in Cesium:

https://cesiumjs.org/Cesium/Build/Documentation/Cesium3DTileset.html#maximumScreenSpaceError

Let me know if that made sense!