| | |
| | | <template> |
| | | <div class="body_box"> |
| | | |
| | | <export-map |
| | | v-if="layerExportshow" |
| | | @SETexportMap="SETexportMap" |
| | | ></export-map> |
| | | <div class="body_box" v-loading="store.state.loading" element-loading-background="rgba(0, 0, 0, 0.8)"> |
| | | <export-map v-if="layerExportshow" @SETexportMap="SETexportMap"></export-map> |
| | | <export-list v-if="store.state.setExportList"></export-list> |
| | | <menus></menus> |
| | | <bottom-btn></bottom-btn> |
| | | <mouse-move></mouse-move> |
| | | <spatial-box |
| | | v-if="layerSpatialshow" |
| | | @SETspatialClose="SETspatialClose" |
| | | ></spatial-box> |
| | | <coord-location |
| | | v-if="layerLocationshow" |
| | | @SETcoordClose="setCoordLocation" |
| | | > |
| | | <bottom-btn v-if="store.state.isShowMap"></bottom-btn> |
| | | <mouse-move v-if="store.state.isShowMap"></mouse-move> |
| | | <spatial-box v-if="layerSpatialshow" @SETspatialClose="SETspatialClose"></spatial-box> |
| | | <coord-location v-if="layerLocationshow" @SETcoordClose="setCoordLocation"> |
| | | </coord-location> |
| | | <details-query v-if="store.state.details.showDetails"> |
| | | |
| | | </details-query> |
| | | <details-query v-if="store.state.details.showDetails"> </details-query> |
| | | <div v-if="store.state.isShowMap"> |
| | | <map-view></map-view> |
| | | </div> |
| | | <div v-if="!store.state.isShowMap"> |
| | | <ol-map></ol-map> |
| | | </div> |
| | | |
| | | <plotting-inquire></plotting-inquire> |
| | | <attribute-info v-if="store.state.setEditTemporaryShow"></attribute-info> |
| | | <slopeQuery v-if="store.state.showSlopeQuey"></slopeQuery> |
| | | <legend-layer v-if="store.state.showlegendLayer"></legend-layer> |
| | | <legend-analysis v-if="store.state.showlegendLayer"></legend-analysis> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | import mapclock from "@/views/mapClock/index.vue"; |
| | | //矢量数据信息弹窗 |
| | | import detailsQuery from "@/views/query/detailsQuery.vue"; |
| | | |
| | | //出图列表 |
| | | import exportList from "./export/exportList.vue"; |
| | | //标绘查询 |
| | | import plottingInquire from "./plotting/plottingInquire.vue"; |
| | | //属性编辑 |
| | | import attributeInfo from "./plotting/attributeInfo.vue"; |
| | | // 坡度值 |
| | | import slopeQuery from "./query/slopeQuery.vue"; |
| | | //图列 |
| | | import legendLayer from '@/views/Map/legendLayer'; |
| | | import legendAnalysis from "./Map/legendAnalysis.vue"; |
| | | import router from "@/router"; |
| | | import { useStore } from "vuex"; // 引入useStore 方法 |
| | | |