|
@@ -7,10 +7,11 @@
|
|
|
<script>
|
|
|
import CityGis from '@/utils/map/CityGis.Bridge.js';
|
|
|
import { myBridge } from '@/utils/map/map';
|
|
|
-import {addPointSearch, clearMap, setCamera} from "@/utils/map/AddLayer.js";
|
|
|
+import {addPointSearch, clearMap, drawHistory, setCamera} from "@/utils/map/AddLayer.js";
|
|
|
import {handleDangerStatistic, initDistrict, initShanghaiMap, viewComplete} from "@/utils/map/baseMethod.js";
|
|
|
import {useEventInteractionStore} from "@/store/eventInteraction.js";
|
|
|
import {useRiskLocationControlDialogStore} from "@/store/riskLocationControlDialog.js";
|
|
|
+import {analogData} from "@/utils/mapService/local-data.js";
|
|
|
let bridge;
|
|
|
|
|
|
const eventInteractionStore = useEventInteractionStore()
|
|
@@ -69,6 +70,11 @@ export default {
|
|
|
})
|
|
|
clearMap()
|
|
|
break;
|
|
|
+ case 'MapClickAction':
|
|
|
+ if(arg.data.id === "cdcl-history" || arg.data.id === "cdry-history"){
|
|
|
+ drawHistory(true, analogData["轨迹"])
|
|
|
+ }
|
|
|
+ break;
|
|
|
}
|
|
|
});
|
|
|
});
|