| | |
| | | /* eslint-disable no-undef */ |
| | | // import '@/lib/AMap'; |
| | | import { useToolboxStore } from '@/stores/toolbox'; |
| | | |
| | | const toolboxStore = useToolboxStore(); |
| | | |
| | | var mapInitDone = false; |
| | | var onMapMountedEvents = []; |
| | |
| | | viewMode: '3D', // 地图模式 |
| | | resizeEnable: true, |
| | | center: [121.6039283, 31.25295567], |
| | | zooms: [3, 18], |
| | | zooms: [0, 18], |
| | | zoom: 14 |
| | | }); |
| | | |
| | |
| | | satellite = new AMap.TileLayer.Satellite(); |
| | | satellite.show(); |
| | | map.add([satellite]); |
| | | toolboxStore.featuresStatus = true; |
| | | |
| | | _initControlbar(); |
| | | // _initMouseTool(); |
| | |
| | | } |
| | | }); |
| | | map.addControl(controlbar); |
| | | toolboxStore.controlbarStatus = true; |
| | | } |
| | | |
| | | // 鼠标绘图初始化 |