@aibee/crc-bmap 0.2.18 → 0.2.19
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/lib/bmap.cjs.min.js +1 -1
- package/lib/bmap.cjs.min.js.map +1 -1
- package/lib/bmap.esm.js +1 -1
- package/lib/bmap.esm.js.map +1 -1
- package/lib/bmap.esm.min.js +1 -1
- package/lib/bmap.esm.min.js.map +1 -1
- package/lib/bmap.min.js +1 -1
- package/lib/bmap.min.js.map +1 -1
- package/package.json +1 -1
package/lib/bmap.esm.js
CHANGED
|
@@ -10901,7 +10901,7 @@ var Navigation = class extends Plugin {
|
|
|
10901
10901
|
if (!distance) {
|
|
10902
10902
|
return;
|
|
10903
10903
|
}
|
|
10904
|
-
const time = Math.min(distance / speed,
|
|
10904
|
+
const time = Math.min(distance / speed, 1);
|
|
10905
10905
|
if (this.pathTween) {
|
|
10906
10906
|
this.tweenUtil.clear();
|
|
10907
10907
|
}
|