|
@@ -1,6 +1,6 @@
|
|
|
import { ref, watch } from 'vue';
|
|
|
import { defineStore } from 'pinia';
|
|
|
-import { addPoint, addPolyLine } from '@/utils/map/mapOperation.js';
|
|
|
+import { addPoint, addPolyLine, addTrajectory, playTrajectory } from '@/utils/map/mapOperation.js';
|
|
|
export const useDrawPointStore = defineStore('drawPointStore', () => {
|
|
|
//当前患者绘制点位列表
|
|
|
const currentDrawPointList = ref([]);
|
|
@@ -48,7 +48,10 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
|
|
|
.sort((pre, next) => new Date(pre.date) - new Date(next.date));
|
|
|
if (pointList?.length > 0) {
|
|
|
addPoint(pointList, 'drawPoint');
|
|
|
- addPolyLine(pointList, 'drawLine');
|
|
|
+ addTrajectory(pointList, 'drawLine');
|
|
|
+ setTimeout(() => {
|
|
|
+ playTrajectory('drawLine', 160);
|
|
|
+ }, 1000);
|
|
|
}
|
|
|
},
|
|
|
{
|