@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 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.unshift([...element.position, 0]);
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.unshift([...element.position, 0]);
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fleet-frontend/mower-maps",
3
- "version": "0.2.0-beta.38",
3
+ "version": "0.2.0-beta.39",
4
4
  "type": "module",
5
5
  "description": "a mower maps in google maps",
6
6
  "main": "dist/index.js",