@vesium/plot 1.0.1-beta.37 → 1.0.1-beta.38
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/README.md +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.iife.js +2 -2
- 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 +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
</p>
|
|
17
17
|
|
|
18
18
|
<p align="center">
|
|
19
|
-
<a href="https://github.com/GeoVueJS/vesium/blob/main/README.zh
|
|
19
|
+
<a href="https://github.com/GeoVueJS/vesium/blob/main/README.zh.md" target="__blank">中文</a>
|
|
20
20
|
|
|
|
21
21
|
<a href="https://github.com/GeoVueJS/vesium/blob/main/README.md" target="__blank">English</a>
|
|
22
22
|
</p>
|
package/dist/index.cjs
CHANGED
|
@@ -183,8 +183,6 @@ function useScenePick(windowPosition, options = {}) {
|
|
|
183
183
|
);
|
|
184
184
|
}
|
|
185
185
|
}
|
|
186
|
-
}, {
|
|
187
|
-
flush: "post"
|
|
188
186
|
});
|
|
189
187
|
return pick;
|
|
190
188
|
}
|
|
@@ -351,6 +349,8 @@ function usePositioned(type, listener) {
|
|
|
351
349
|
});
|
|
352
350
|
vue.watch([position, pick], ([position2, pick2]) => {
|
|
353
351
|
pick2 && position2 && listener({ event: { position: position2 }, pick: pick2 });
|
|
352
|
+
}, {
|
|
353
|
+
flush: "post"
|
|
354
354
|
});
|
|
355
355
|
}
|
|
356
356
|
const GLOBAL_GRAPHIC_SYMBOL = Symbol("GLOBAL_GRAPHIC_SYMBOL");
|