|
@@ -40,26 +40,31 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+ const renderPersonPoint = () => {
|
|
|
+ const pointList = currentDrawPointList.value
|
|
|
+ .filter((item) => {
|
|
|
+ return item.x && item.y;
|
|
|
+ })
|
|
|
+ .sort((pre, next) => new Date(pre.date) - new Date(next.date));
|
|
|
+ if (pointList?.length > 0) {
|
|
|
+ addPoint(pointList, 'drawPoint');
|
|
|
+ addTrajectory(pointList, 'drawLine');
|
|
|
+ setTimeout(() => {
|
|
|
+ playTrajectory('drawLine', 160, mapStore.mapTheme == 'light' ? 'green' : 'red');
|
|
|
+ }, 1000);
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
watch(
|
|
|
() => currentDrawPointList.value,
|
|
|
() => {
|
|
|
- const pointList = currentDrawPointList.value
|
|
|
- .filter((item) => {
|
|
|
- return item.x && item.y;
|
|
|
- })
|
|
|
- .sort((pre, next) => new Date(pre.date) - new Date(next.date));
|
|
|
- if (pointList?.length > 0) {
|
|
|
- addPoint(pointList, 'drawPoint');
|
|
|
- addTrajectory(pointList, 'drawLine');
|
|
|
- setTimeout(() => {
|
|
|
- playTrajectory('drawLine', 160, mapStore.mapTheme == 'light' ? 'green' : 'red');
|
|
|
- }, 1000);
|
|
|
- }
|
|
|
+ renderPersonPoint();
|
|
|
},
|
|
|
{
|
|
|
deep: true
|
|
|
}
|
|
|
);
|
|
|
+
|
|
|
return {
|
|
|
currentDrawPointList,
|
|
|
infoBoxIndex,
|
|
@@ -72,6 +77,7 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
|
|
|
modifyTrail,
|
|
|
pushCurrentDrawPointList,
|
|
|
setDrawStartStatus,
|
|
|
- modifyCurrentDrawPointList
|
|
|
+ modifyCurrentDrawPointList,
|
|
|
+ renderPersonPoint
|
|
|
};
|
|
|
});
|