@vesium/plot 1.0.1-beta.71 → 1.0.1-beta.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.iife.js +1 -1
- package/dist/index.iife.js.map +1 -1
- package/dist/index.iife.min.js +1 -1
- package/dist/index.iife.min.js.map +1 -1
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.mjs +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -489,7 +489,7 @@ function useRender(plots, current, getCurrentTime) {
|
|
|
489
489
|
const primitiveCollection = usePrimitive(new PrimitiveCollection());
|
|
490
490
|
const groundPrimitiveCollection = usePrimitive(new PrimitiveCollection(), { collection: "ground" });
|
|
491
491
|
const dataSource = useDataSource(new CustomDataSource());
|
|
492
|
-
const entityScope = useEntityScope({ collection: () => dataSource.value
|
|
492
|
+
const entityScope = useEntityScope({ collection: () => dataSource.value?.entities });
|
|
493
493
|
const primitiveScope = usePrimitiveScope({ collection: () => primitiveCollection.value });
|
|
494
494
|
const groundPrimitiveScope = usePrimitiveScope({ collection: () => groundPrimitiveCollection.value });
|
|
495
495
|
const mouseCartesian = shallowRef();
|