File tree 1 file changed +3
-2
lines changed
packages/engine/Source/DataSources
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -499,12 +499,13 @@ DataSourceDisplay.prototype._onDataSourceMoved = function (
499
499
* @callback DataSourceDisplay.VisualizersCallback
500
500
*
501
501
* @param {Scene } scene The scene to create visualizers for.
502
+ * @param {EntityCluster } entityCluster The entity cluster to create visualizers for.
502
503
* @param {DataSource } dataSource The data source to create visualizers for.
503
504
* @returns {Visualizer[] } An array of visualizers used for visualization.
504
505
*
505
506
* @example
506
- * function createVisualizers(scene, dataSource) {
507
- * return [new Cesium.BillboardVisualizer(scene , dataSource.entities)];
507
+ * function createVisualizers(scene, entityCluster, dataSource) {
508
+ * return [new Cesium.BillboardVisualizer(entityCluster , dataSource.entities)];
508
509
* }
509
510
*/
510
511
export default DataSourceDisplay ;
You can’t perform that action at this time.
0 commit comments