We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25467e5 commit 3d89169Copy full SHA for 3d89169
src/Layer/OGC3DTilesLayer.js
@@ -69,6 +69,18 @@ export const OGC3DTILES_LAYER_EVENTS = {
69
* @property {boolean} visible - the tile visible state
70
*/
71
TILE_VISIBILITY_CHANGE: 'tile-visibility-change',
72
+ /**
73
+ * Fired when a new batch of tiles start loading (can be fired multiple times, e.g. when the camera moves and new tiles
74
+ * start loading)
75
+ * @event OGC3DTilesLayer#tiles-load-start
76
+ */
77
+ TILES_LOAD_START: 'tiles-load-start',
78
79
+ * Fired when all visible tiles are loaded (can be fired multiple times, e.g. when the camera moves and new tiles
80
+ * are loaded)
81
+ * @event OGC3DTilesLayer#tiles-load-end
82
83
+ TILES_LOAD_END: 'tiles-load-end',
84
};
85
86
/**
0 commit comments