|
@@ -1,25 +1,16 @@
|
|
|
import { ref } from 'vue';
|
|
|
-import { defineStore, mapStores } from 'pinia';
|
|
|
+import { defineStore } from 'pinia';
|
|
|
import {
|
|
|
- addTrajectory,
|
|
|
addImagePoint,
|
|
|
addJuHePoint,
|
|
|
closePoint,
|
|
|
stopTrajectory,
|
|
|
startBidding
|
|
|
} from '@/utils/map/mapOperation.js';
|
|
|
-import { useDrawPointStore } from './drawPointManage';
|
|
|
-import {
|
|
|
- getTrajectorPointOnPeople,
|
|
|
- getTrajectorPointOnCar,
|
|
|
- getTrajectorPointOnCarById
|
|
|
-} from '@/service/api/mapRequest.js';
|
|
|
-import { color } from 'echarts';
|
|
|
+import { getTrajectorPointOnPeople, getTrajectorPointOnCar } from '@/service/api/mapRequest.js';
|
|
|
export const useMapStore = defineStore('mapStore', () => {
|
|
|
//当前病例点位列表
|
|
|
const currentToolSelectArray = ref(['newAdress', 'touch']);
|
|
|
- //当前绘制点位列表
|
|
|
- const drawPointStore = useDrawPointStore();
|
|
|
|
|
|
// 会商车绘制列表
|
|
|
const flowCarList = ref([]);
|
|
@@ -39,7 +30,7 @@ export const useMapStore = defineStore('mapStore', () => {
|
|
|
switch (value) {
|
|
|
case 'newAdress': {
|
|
|
//新址图标
|
|
|
- addImagePoint('newAdress', [{ x: -1870.119238446634, y: -12912.502302966037 }], {
|
|
|
+ addImagePoint('newAdress', [{ x: -14926.528171515301, y: -1705.2657878212942 }], {
|
|
|
imageUrl: new URL(`@/assets/image/mapTools/newAdress.png`, import.meta.url).href
|
|
|
});
|
|
|
break;
|