mapStore.js 480 B

1234567891011121314151617181920212223
  1. import {defineStore} from "pinia";
  2. export const useMapStore = defineStore('map',{
  3. state:() =>({
  4. layerShow:false,
  5. currentLayerList:[],
  6. whiteMoldState:false,
  7. camera:{
  8. heading:null,
  9. tilt:null,
  10. position:{
  11. x:null,
  12. y:null,
  13. z:null
  14. }
  15. }
  16. }),
  17. persist:true,
  18. actions:{
  19. setCameraInfo(data){
  20. this.camera = data
  21. }
  22. }
  23. })