1234567891011121314151617181920212223 |
- import {defineStore} from "pinia";
- export const useMapStore = defineStore('map',{
- state:() =>({
- layerShow:false,
- currentLayerList:[],
- whiteMoldState:false,
- camera:{
- heading:null,
- tilt:null,
- position:{
- x:null,
- y:null,
- z:null
- }
- }
- }),
- persist:true,
- actions:{
- setCameraInfo(data){
- this.camera = data
- }
- }
- })
|