@fleet-frontend/mower-maps 0.2.0-beta.38 → 0.2.0-beta.39
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.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4122,7 +4122,7 @@ class UnifiedMapDataProcessor {
|
|
|
4122
4122
|
Array.isArray(element.tunnel.points) &&
|
|
4123
4123
|
element.tunnel.points.length > 0) {
|
|
4124
4124
|
// 回桩通道需要将充电桩的position点添加到通道的终点
|
|
4125
|
-
element.tunnel.points.
|
|
4125
|
+
element.tunnel.points.push([...element.position, 0]);
|
|
4126
4126
|
if (element.tunnel.points && element.tunnel.points.length >= 2) {
|
|
4127
4127
|
const channelData = new ChannelData({
|
|
4128
4128
|
...element.tunnel,
|
package/dist/index.js
CHANGED
|
@@ -4142,7 +4142,7 @@ class UnifiedMapDataProcessor {
|
|
|
4142
4142
|
Array.isArray(element.tunnel.points) &&
|
|
4143
4143
|
element.tunnel.points.length > 0) {
|
|
4144
4144
|
// 回桩通道需要将充电桩的position点添加到通道的终点
|
|
4145
|
-
element.tunnel.points.
|
|
4145
|
+
element.tunnel.points.push([...element.position, 0]);
|
|
4146
4146
|
if (element.tunnel.points && element.tunnel.points.length >= 2) {
|
|
4147
4147
|
const channelData = new ChannelData({
|
|
4148
4148
|
...element.tunnel,
|