@fleet-frontend/mower-maps 0.1.0-beta.1 → 0.1.0-beta.3
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
|
@@ -5006,7 +5006,10 @@ currentMowingPartition, }) => {
|
|
|
5006
5006
|
// 关于location的分区,需要通过地图数据,结合射线法,判断当前的点在哪个分区里
|
|
5007
5007
|
let mowingStatus = isMowing || false;
|
|
5008
5008
|
let newCurrentMowingPartitionId = currentMowingPartition;
|
|
5009
|
-
console.info(
|
|
5009
|
+
// console.info(
|
|
5010
|
+
// 'handleMultipleRealTimeData==newCurrentMowingPartitionId=================',
|
|
5011
|
+
// newCurrentMowingPartitionId
|
|
5012
|
+
// );
|
|
5010
5013
|
realTimeData.forEach((item) => {
|
|
5011
5014
|
// 这里需要区分,是割草进度还是割草轨迹
|
|
5012
5015
|
if (item.type === REAL_TIME_DATA_TYPE.LOCATION) {
|
|
@@ -8841,7 +8844,6 @@ class MapDataProcessor {
|
|
|
8841
8844
|
break;
|
|
8842
8845
|
}
|
|
8843
8846
|
case 'TIME_LIMIT_OBSTACLE': {
|
|
8844
|
-
console.info('TIME_LIMIT_OBSTACLE', element);
|
|
8845
8847
|
try {
|
|
8846
8848
|
// 如果有SVG数据,直接创建SVG绘制元素
|
|
8847
8849
|
if ('svg' in element &&
|
|
@@ -11582,7 +11584,6 @@ class MowerMapOverlay {
|
|
|
11582
11584
|
// 找到当前position所在的分区id,将该点更新到pathData中
|
|
11583
11585
|
// 先查找当前的分区id是多少,然后确定当前的点是否在当前分区id中,如果不在,则重新获取分区id并重新设置
|
|
11584
11586
|
const currentPartitionId = useCurrentMowingDataStore.getState().currentMowingPartitionId;
|
|
11585
|
-
console.info('updatePathDataByMowingPosition==currentPartitionId=================', currentPartitionId);
|
|
11586
11587
|
const processStateIsMowing = useCurrentMowingDataStore.getState().processStateIsMowing;
|
|
11587
11588
|
if (currentPartitionId && this.pathData?.[currentPartitionId]) {
|
|
11588
11589
|
const currentPathData = this.pathData[currentPartitionId];
|
|
@@ -11965,7 +11966,7 @@ const MowerMapRenderer = forwardRef(({ edger = false, unitType = UnitsType.Imper
|
|
|
11965
11966
|
setCurrentError(error);
|
|
11966
11967
|
onError?.(error);
|
|
11967
11968
|
};
|
|
11968
|
-
const fitBounds = useCallback(() => {
|
|
11969
|
+
const fitBounds = useCallback((padding = 0) => {
|
|
11969
11970
|
if (!mapJson || !mapRef)
|
|
11970
11971
|
return null;
|
|
11971
11972
|
// 计算边界
|
|
@@ -11984,7 +11985,7 @@ const MowerMapRenderer = forwardRef(({ edger = false, unitType = UnitsType.Imper
|
|
|
11984
11985
|
const googleBounds = new window.google.maps.LatLngBounds(new window.google.maps.LatLng(swLat, swLng), // 西南角
|
|
11985
11986
|
new window.google.maps.LatLng(neLat, neLng) // 东北角
|
|
11986
11987
|
);
|
|
11987
|
-
mapRef.fitBounds(googleBounds);
|
|
11988
|
+
mapRef.fitBounds(googleBounds, padding);
|
|
11988
11989
|
}, [mapJson, mapRef, defaultTransform]);
|
|
11989
11990
|
// 初始化Google Maps叠加层
|
|
11990
11991
|
const initializeGoogleMapsOverlay = async () => {
|
|
@@ -12038,7 +12039,7 @@ const MowerMapRenderer = forwardRef(({ edger = false, unitType = UnitsType.Imper
|
|
|
12038
12039
|
overlay.setEdger(edger);
|
|
12039
12040
|
// 只在首次初始化时自适应视图
|
|
12040
12041
|
if (!hasInitializedBounds) {
|
|
12041
|
-
mapInstance.fitBounds(googleBounds);
|
|
12042
|
+
// mapInstance.fitBounds(googleBounds);
|
|
12042
12043
|
setHasInitializedBounds(true);
|
|
12043
12044
|
}
|
|
12044
12045
|
setIsGoogleMapsReady(true);
|
|
@@ -12334,21 +12335,21 @@ const MowerMapRenderer = forwardRef(({ edger = false, unitType = UnitsType.Imper
|
|
|
12334
12335
|
}
|
|
12335
12336
|
}
|
|
12336
12337
|
}, [realTimeData, mapJson, pathJson]);
|
|
12337
|
-
useEffect(() => {
|
|
12338
|
-
|
|
12339
|
-
|
|
12340
|
-
|
|
12341
|
-
|
|
12342
|
-
|
|
12343
|
-
|
|
12344
|
-
|
|
12345
|
-
|
|
12346
|
-
|
|
12347
|
-
|
|
12348
|
-
|
|
12349
|
-
|
|
12350
|
-
|
|
12351
|
-
}, [defaultTransform]);
|
|
12338
|
+
// useEffect(() => {
|
|
12339
|
+
// if (!overlayRef.current || !defaultTransform) return;
|
|
12340
|
+
// overlayRef.current?.setTransform(defaultTransform);
|
|
12341
|
+
// const validBounds = getValidGpsBounds(mapJson, defaultTransform?.rotation);
|
|
12342
|
+
// // 地图数据中的坐标格式是 [longitude, latitude]
|
|
12343
|
+
// const swLat = validBounds.sw[1] + defaultTransform.y;
|
|
12344
|
+
// const swLng = validBounds.sw[0] + defaultTransform.x;
|
|
12345
|
+
// const neLat = validBounds.ne[1] + defaultTransform.y;
|
|
12346
|
+
// const neLng = validBounds.ne[0] + defaultTransform.x;
|
|
12347
|
+
// const googleBounds = new window.google.maps.LatLngBounds(
|
|
12348
|
+
// new window.google.maps.LatLng(swLat, swLng), // 西南角
|
|
12349
|
+
// new window.google.maps.LatLng(neLat, neLng) // 东北角
|
|
12350
|
+
// );
|
|
12351
|
+
// mapRef.fitBounds(googleBounds);
|
|
12352
|
+
// }, [defaultTransform]);
|
|
12352
12353
|
useEffect(() => {
|
|
12353
12354
|
if (!overlayRef || !overlayRef.current)
|
|
12354
12355
|
return;
|
|
@@ -12356,8 +12357,8 @@ const MowerMapRenderer = forwardRef(({ edger = false, unitType = UnitsType.Imper
|
|
|
12356
12357
|
}, [edger]);
|
|
12357
12358
|
// 提供ref方法
|
|
12358
12359
|
useImperativeHandle(ref, () => ({
|
|
12359
|
-
fitToView: () => {
|
|
12360
|
-
fitBounds();
|
|
12360
|
+
fitToView: (padding = 0) => {
|
|
12361
|
+
fitBounds(padding);
|
|
12361
12362
|
},
|
|
12362
12363
|
getOverlay: () => {
|
|
12363
12364
|
return overlayRef.current;
|
package/dist/index.js
CHANGED
|
@@ -5008,7 +5008,10 @@ currentMowingPartition, }) => {
|
|
|
5008
5008
|
// 关于location的分区,需要通过地图数据,结合射线法,判断当前的点在哪个分区里
|
|
5009
5009
|
let mowingStatus = isMowing || false;
|
|
5010
5010
|
let newCurrentMowingPartitionId = currentMowingPartition;
|
|
5011
|
-
console.info(
|
|
5011
|
+
// console.info(
|
|
5012
|
+
// 'handleMultipleRealTimeData==newCurrentMowingPartitionId=================',
|
|
5013
|
+
// newCurrentMowingPartitionId
|
|
5014
|
+
// );
|
|
5012
5015
|
realTimeData.forEach((item) => {
|
|
5013
5016
|
// 这里需要区分,是割草进度还是割草轨迹
|
|
5014
5017
|
if (item.type === REAL_TIME_DATA_TYPE.LOCATION) {
|
|
@@ -8843,7 +8846,6 @@ class MapDataProcessor {
|
|
|
8843
8846
|
break;
|
|
8844
8847
|
}
|
|
8845
8848
|
case 'TIME_LIMIT_OBSTACLE': {
|
|
8846
|
-
console.info('TIME_LIMIT_OBSTACLE', element);
|
|
8847
8849
|
try {
|
|
8848
8850
|
// 如果有SVG数据,直接创建SVG绘制元素
|
|
8849
8851
|
if ('svg' in element &&
|
|
@@ -11584,7 +11586,6 @@ class MowerMapOverlay {
|
|
|
11584
11586
|
// 找到当前position所在的分区id,将该点更新到pathData中
|
|
11585
11587
|
// 先查找当前的分区id是多少,然后确定当前的点是否在当前分区id中,如果不在,则重新获取分区id并重新设置
|
|
11586
11588
|
const currentPartitionId = useCurrentMowingDataStore.getState().currentMowingPartitionId;
|
|
11587
|
-
console.info('updatePathDataByMowingPosition==currentPartitionId=================', currentPartitionId);
|
|
11588
11589
|
const processStateIsMowing = useCurrentMowingDataStore.getState().processStateIsMowing;
|
|
11589
11590
|
if (currentPartitionId && this.pathData?.[currentPartitionId]) {
|
|
11590
11591
|
const currentPathData = this.pathData[currentPartitionId];
|
|
@@ -11967,7 +11968,7 @@ const MowerMapRenderer = React.forwardRef(({ edger = false, unitType = UnitsType
|
|
|
11967
11968
|
setCurrentError(error);
|
|
11968
11969
|
onError?.(error);
|
|
11969
11970
|
};
|
|
11970
|
-
const fitBounds = React.useCallback(() => {
|
|
11971
|
+
const fitBounds = React.useCallback((padding = 0) => {
|
|
11971
11972
|
if (!mapJson || !mapRef)
|
|
11972
11973
|
return null;
|
|
11973
11974
|
// 计算边界
|
|
@@ -11986,7 +11987,7 @@ const MowerMapRenderer = React.forwardRef(({ edger = false, unitType = UnitsType
|
|
|
11986
11987
|
const googleBounds = new window.google.maps.LatLngBounds(new window.google.maps.LatLng(swLat, swLng), // 西南角
|
|
11987
11988
|
new window.google.maps.LatLng(neLat, neLng) // 东北角
|
|
11988
11989
|
);
|
|
11989
|
-
mapRef.fitBounds(googleBounds);
|
|
11990
|
+
mapRef.fitBounds(googleBounds, padding);
|
|
11990
11991
|
}, [mapJson, mapRef, defaultTransform]);
|
|
11991
11992
|
// 初始化Google Maps叠加层
|
|
11992
11993
|
const initializeGoogleMapsOverlay = async () => {
|
|
@@ -12040,7 +12041,7 @@ const MowerMapRenderer = React.forwardRef(({ edger = false, unitType = UnitsType
|
|
|
12040
12041
|
overlay.setEdger(edger);
|
|
12041
12042
|
// 只在首次初始化时自适应视图
|
|
12042
12043
|
if (!hasInitializedBounds) {
|
|
12043
|
-
mapInstance.fitBounds(googleBounds);
|
|
12044
|
+
// mapInstance.fitBounds(googleBounds);
|
|
12044
12045
|
setHasInitializedBounds(true);
|
|
12045
12046
|
}
|
|
12046
12047
|
setIsGoogleMapsReady(true);
|
|
@@ -12336,21 +12337,21 @@ const MowerMapRenderer = React.forwardRef(({ edger = false, unitType = UnitsType
|
|
|
12336
12337
|
}
|
|
12337
12338
|
}
|
|
12338
12339
|
}, [realTimeData, mapJson, pathJson]);
|
|
12339
|
-
|
|
12340
|
-
|
|
12341
|
-
|
|
12342
|
-
|
|
12343
|
-
|
|
12344
|
-
|
|
12345
|
-
|
|
12346
|
-
|
|
12347
|
-
|
|
12348
|
-
|
|
12349
|
-
|
|
12350
|
-
|
|
12351
|
-
|
|
12352
|
-
|
|
12353
|
-
}, [defaultTransform]);
|
|
12340
|
+
// useEffect(() => {
|
|
12341
|
+
// if (!overlayRef.current || !defaultTransform) return;
|
|
12342
|
+
// overlayRef.current?.setTransform(defaultTransform);
|
|
12343
|
+
// const validBounds = getValidGpsBounds(mapJson, defaultTransform?.rotation);
|
|
12344
|
+
// // 地图数据中的坐标格式是 [longitude, latitude]
|
|
12345
|
+
// const swLat = validBounds.sw[1] + defaultTransform.y;
|
|
12346
|
+
// const swLng = validBounds.sw[0] + defaultTransform.x;
|
|
12347
|
+
// const neLat = validBounds.ne[1] + defaultTransform.y;
|
|
12348
|
+
// const neLng = validBounds.ne[0] + defaultTransform.x;
|
|
12349
|
+
// const googleBounds = new window.google.maps.LatLngBounds(
|
|
12350
|
+
// new window.google.maps.LatLng(swLat, swLng), // 西南角
|
|
12351
|
+
// new window.google.maps.LatLng(neLat, neLng) // 东北角
|
|
12352
|
+
// );
|
|
12353
|
+
// mapRef.fitBounds(googleBounds);
|
|
12354
|
+
// }, [defaultTransform]);
|
|
12354
12355
|
React.useEffect(() => {
|
|
12355
12356
|
if (!overlayRef || !overlayRef.current)
|
|
12356
12357
|
return;
|
|
@@ -12358,8 +12359,8 @@ const MowerMapRenderer = React.forwardRef(({ edger = false, unitType = UnitsType
|
|
|
12358
12359
|
}, [edger]);
|
|
12359
12360
|
// 提供ref方法
|
|
12360
12361
|
React.useImperativeHandle(ref, () => ({
|
|
12361
|
-
fitToView: () => {
|
|
12362
|
-
fitBounds();
|
|
12362
|
+
fitToView: (padding = 0) => {
|
|
12363
|
+
fitBounds(padding);
|
|
12363
12364
|
},
|
|
12364
12365
|
getOverlay: () => {
|
|
12365
12366
|
return overlayRef.current;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MapDataProcessor.d.ts","sourceRoot":"","sources":["../../src/processor/MapDataProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EACL,OAAO,EAOP,WAAW,EAEX,SAAS,EACV,MAAM,UAAU,CAAC;AAkBlB;;;GAGG;AACH,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,MAAM,CAAC,SAAS,CAAY;IACpC;;OAEG;IACH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,GAAG,WAAW,EAAE;IAsC5E;;;OAGG;IACH,OAAO,CAAC,MAAM,CAAC,oBAAoB;IAgDnC;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;
|
|
1
|
+
{"version":3,"file":"MapDataProcessor.d.ts","sourceRoot":"","sources":["../../src/processor/MapDataProcessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EACL,OAAO,EAOP,WAAW,EAEX,SAAS,EACV,MAAM,UAAU,CAAC;AAkBlB;;;GAGG;AACH,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,MAAM,CAAC,SAAS,CAAY;IACpC;;OAEG;IACH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,GAAG,WAAW,EAAE;IAsC5E;;;OAGG;IACH,OAAO,CAAC,MAAM,CAAC,oBAAoB;IAgDnC;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,kBAAkB;IAmLjC;;OAEG;IACH,MAAM,CAAC,kBAAkB,CACvB,QAAQ,EAAE,WAAW,EAAE,GAAG,SAAS,EACnC,aAAa,EAAE;QACb,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,gBAAgB,CAAC,EAAE,OAAO,CAAC;QAC3B,gBAAgB,CAAC,EAAE,OAAO,CAAC;KAC5B,GACA,WAAW,EAAE;CAOjB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MowerMapOverlay.d.ts","sourceRoot":"","sources":["../../src/render/MowerMapOverlay.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"MowerMapOverlay.d.ts","sourceRoot":"","sources":["../../src/render/MowerMapOverlay.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"handleRealTime.d.ts","sourceRoot":"","sources":["../../src/utils/handleRealTime.ts"],"names":[],"mappings":"AAWA,OAAO,EACL,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EAEpB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAIzD,eAAO,MAAM,kBAAkB,GAC7B,mBAAmB,GAAG,EAAE,EACxB,WAAW,MAAM,EACjB,WAAW,MAAM,YAMlB,CAAC;AAGF,eAAO,MAAM,cAAc,GAAI,mBAAmB,GAAG,EAAE,EAAE,WAAW,MAAM,EAAE,WAAW,MAAM,
|
|
1
|
+
{"version":3,"file":"handleRealTime.d.ts","sourceRoot":"","sources":["../../src/utils/handleRealTime.ts"],"names":[],"mappings":"AAWA,OAAO,EACL,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EAEpB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACpC,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAIzD,eAAO,MAAM,kBAAkB,GAC7B,mBAAmB,GAAG,EAAE,EACxB,WAAW,MAAM,EACjB,WAAW,MAAM,YAMlB,CAAC;AAGF,eAAO,MAAM,cAAc,GAAI,mBAAmB,GAAG,EAAE,EAAE,WAAW,MAAM,EAAE,WAAW,MAAM,QAU5F,CAAC;AAiDF;;;;;;GAMG;AACH,QAAA,MAAM,0BAA0B,GAAI,+DAOpC,uBAAuB,KAAG;IACxB,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,sBAAsB,EAAE,MAAM,CAAC;CAuEhC,CAAC;AAEF;;;;;GAKG;AACH,QAAA,MAAM,oCAAoC,GAAI,+DAK3C;IAED,YAAY,EAAE,CAAC,oBAAoB,GAAG,mBAAmB,GAAG,qBAAqB,CAAC,EAAE,CAAC;IACrF,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACjC,KAAG;IACF,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,QAAQ,CAAC;IACnB,sBAAsB,EAAE,MAAM,CAAC;CA+BhC,CAAC;AAEF,OAAO,EAAE,0BAA0B,EAAE,oCAAoC,EAAE,CAAC"}
|