123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- <template>
- <div class="page page-full">
- <div style="position: relative; flex: 1">
- <div class="map" ref="mapRef" style="height: 100%"></div>
- <div class="search-hover">
- <!-- <el-input v-model="searchText" @keydown.enter.native="searchPoint" placeholder="地址搜索" style="width:250px">
- <template #append>
- <el-button :icon="Search" @click="searchPoint"></el-button>
- </template>
- </el-input> -->
- <el-select
- v-model="searchText"
- filterable
- allow-create
- default-first-option
- :reserve-keyword="false"
- placeholder="地址搜索"
- style="width: 250px"
- @change="searchPoint"
- >
- <el-option v-for="item in heatList" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </div>
- <!-- 显示弹层区域 -->
- <div class="view map-hover-station">
- <div class="view-div" v-for="(item, index) in viewList" :key="index">
- <div class="view-div-head">
- <div class="title">{{ item.name }}环路</div>
- <div class="info">
- <div class="">环路编号:{{ item.code }}</div>
- <div class="ml-4">所属换热站:{{ item.stationInfo.name }}</div>
- </div>
- </div>
- <div class="view-div-content">
- <div>路线信息</div>
- <div class="mt-1 pl-4">
- <p v-for="(point, index) in item.loopViaPointInfo" :key="index">
- {{ point.position }}
- </p>
- </div>
- <div class="mt-1">实时温度</div>
- <el-table
- :data="[
- {
- outTemperature1: item.outTemperature1,
- inTemperature1: item.inTemperature1,
- outTemperature2: item.outTemperature2,
- inTemperature2: item.inTemperature2,
- },
- ]"
- :border="true"
- class="mt-1"
- >
- <el-table-column label="一网供水温度" prop="outTemperature1" :show-overflow-tooltip="true" />
- <el-table-column label="一网回水温度" prop="inTemperature1" :show-overflow-tooltip="true" />
- <el-table-column label="二网供水温度" prop="outTemperature2" :show-overflow-tooltip="true" />
- <el-table-column label="二网回水温度" prop="inTemperature2" :show-overflow-tooltip="true" />
- </el-table>
- <div class="mt-1">实时压力(MPa)</div>
- <el-table
- :data="[
- {
- outPressure1: item.outPressure1,
- inPressure1: item.inPressure1,
- outPressure2: item.outPressure2,
- inPressure2: item.inPressure2,
- },
- ]"
- :border="true"
- class="mt-1"
- >
- <el-table-column label="一网供水压力" prop="outPressure1" :show-overflow-tooltip="true" />
- <el-table-column label="一网回水压力" prop="inPressure1" :show-overflow-tooltip="true" />
- <el-table-column label="二网供水压力" prop="outPressure2" :show-overflow-tooltip="true" />
- <el-table-column label="二网回水压力" prop="inPressure2" :show-overflow-tooltip="true" />
- </el-table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import { onMounted, ref, watch, nextTick } from 'vue';
- import { Search } from '@element-plus/icons-vue';
- import { useRouter } from 'vue-router';
- import api from '/@/api/heatStation';
- import { setMarker, setLine } from '/@/utils/map';
- import { useStore } from '/@/store/index';
- const router = useRouter();
- const mapRef = ref();
- const searchText = ref('');
- const store = useStore();
- const heatList = ref([]);
- const viewList = ref<any[]>([]);
- let BMapGL = (window as any).BMapGL;
- let map: any = null;
- let local: any = null;
- let getThemeConfig: any = null;
- let points: any = [];
- let loops: any = [];
- // 地图弹窗点击去环路详情,进行跳转
- window.mapToDetail = (code: string) => {
- router.push('/heating-monitor/loopSupervision/loopDetail?code=' + code);
- };
- function searchPoint(val: number | string) {
- if (typeof val === 'number') {
- map.setZoom(15);
- const { lat, lnt: lng } = heatList.value.find((item: any) => item.id === val) as any;
- setTimeout(() => {
- map.centerAndZoom({ lat, lng }, 20);
- }, 500);
- local && local.search('');
- // 选择的换热站
- } else {
- // 自定义的地址搜索
- if (local) {
- local.search(searchText.value);
- } else {
- local = new BMapGL.LocalSearch(map, {
- renderOptions: { map },
- });
- local.search(searchText.value);
- }
- }
- console.log(val);
- }
- onMounted(() => {
- // 获取布局配置信息
- getThemeConfig = store.state.themeConfig.themeConfig;
- map = new BMapGL.Map(mapRef.value, {});
- map.addControl(new BMapGL.ScaleControl()); // 添加比例尺控件
- map.addControl(new BMapGL.ZoomControl()); // 添加缩放控件
- const testPt = new BMapGL.Point(124.383044, 40.124296);
- map.centerAndZoom(testPt, 5);
- map.enableScrollWheelZoom();
- if (getThemeConfig.isIsDark) {
- map.setMapStyleV2({
- styleId: 'b8d841ee37fd5bd41e742049b6fcd0f5',
- });
- }
- // 获取环路列表
- api.heatStation.getAll().then((res: any) => {
- loops = res;
- const list = res.filter((item: any) => item.loopViaPointInfo?.length > 1);
- // console.log(list)
- setLine(list, map);
- });
- // 获取换热站列表
- api.heatStation
- .getAllList({
- status: 1,
- })
- .then((res: any) => {
- heatList.value = res;
- renderStation(res);
- });
-
- // 地图缩放事件
- map.addEventListener('zoomend', (e: any) => {
- // console.log('zoomend', map.getZoom())
- let zoom = map.getZoom();
- if (zoom > 18.4 && points.length) {
- resetAreaPoints()
- } else {
- viewList.value = [];
- }
- });
-
- // 地图拖拽事件
- map.addEventListener('dragend', (e: any) => {
- let zoom = map.getZoom();
- if (zoom > 18.4 && points.length) {
- resetAreaPoints()
- } else {
- viewList.value = [];
- }
- });
- // 获取当前视图内的点
- // map.getBounds().containsPoint({
- // "lng": 124.41798,
- // "lat": 40.149303
- // })
- // window._map = map
- });
- function resetAreaPoints() {
- let arr: any = [];
- let viewArrCache: any = [];
- points.forEach((point: any) => {
- if (map.getBounds().containsPoint(point)) {
- arr.push(point);
- }
- });
- arr.forEach((point: any) => {
- // 查询环路列表中属于该站点的环路列表,进行显示
- const theLoops = loops.filter((item: any) => item.stationInfo?.id === point.data.id);
- viewArrCache = viewArrCache.concat(theLoops);
- });
- viewList.value = viewArrCache;
- }
- // 监听 vuex 中是否开启深色主题
- watch(
- () => store.state.themeConfig.themeConfig.isIsDark,
- (isIsDark) => {
- nextTick(() => {
- setTimeout(() => {
- map.setMapStyleV2({
- styleId: isIsDark ? 'b8d841ee37fd5bd41e742049b6fcd0f5' : '48b5759a53d0d6f607c049543d4c92e4',
- });
- }, 500);
- });
- },
- {
- deep: true,
- immediate: true,
- }
- );
- const renderStation = (list: any[]) => {
- points = setMarker(list, map);
- // 控制标点显示在最佳视野内
- if (points && points.length) {
- map.setViewport(points);
- }
- };
- </script>
- <style lang="scss">
- [data-theme='dark'] .map-hover-station {
- .view-div-head,
- .view-div {
- color: #fff;
- background: #222;
- }
- }
- .BMap_bubble_pop {
- width: 220px;
- padding: 0 !important;
- border: none !important;
- background: transparent !important;
- color: #fff !important;
- margin-top: 0;
- margin-left: -20px;
- // pointer-events: none;
- & > img {
- display: none !important;
- }
- }
- .BMap_bubble_content {
- color: #fff !important;
- }
- // .BMap_bubble_content,
- // .BMap_bubble_center {
- // height: 150px !important;
- // }
- .BMap_bubble_content {
- height: auto !important;
- background: rgba(0, 29, 122, 0.6) !important;
- border-radius: 3px;
- }
- .BMap_bubble_top,
- .BMap_bubble_bottom {
- display: none !important;
- }
- .map-hover-box {
- color: #fff;
- font-size: 12px;
- padding: 10px 14px;
- .map-hover-title {
- line-height: 18px;
- font-size: 14px;
- font-weight: 500;
- }
- .map-hover-label {
- white-space: nowrap;
- }
- .map-hover-btn {
- white-space: nowrap;
- background: #67c23a;
- padding: 6px 12px;
- border-radius: 4px;
- cursor: pointer;
- }
- .map-hover-row-item {
- display: flex;
- align-items: flex-start;
- margin-top: 4px;
- line-height: 1.2;
- // gap: 20px;
- .map-hover-value {
- // font-size: 22px;
- color: #ffd228;
- font-weight: 500;
- word-break: break-all;
- }
- }
- }
- </style>
- <style scoped lang="scss">
- .map-hover-station {
- max-height: 98%;
- overflow-y: auto;
- }
- .view {
- position: absolute;
- top: 10px;
- right: 10px;
- z-index: 999;
- // display: flex;
- &-div {
- width: 350px;
- color: #000;
- background-color: #fff;
- font-size: 12px;
- &:not(:first-child) {
- margin-top: 10px;
- }
- &-head {
- background-color: #f2f2f2;
- padding: 5px 10px;
- .title {
- font-size: 13px;
- font-weight: bold;
- }
- .info {
- display: flex;
- align-items: center;
- margin-top: 4px;
- }
- }
- &-content {
- padding: 10px;
- }
- }
- }
- :deep(.el-table) {
- tr {
- th {
- background-color: #efefef;
- }
- }
- }
- :deep(.el-table__cell) {
- padding: 2px 0;
- }
- :deep(.cell) {
- padding: 0 2px;
- line-height: 14px;
- font-weight: 400;
- font-size: 12px;
- color: #000;
- }
- .search-hover {
- position: absolute;
- top: 10px;
- left: 10px;
- z-index: 999;
- width: 350px;
- color: #000;
- font-size: 12px;
- padding: 10px;
- }
- .suggestId {
- height: 30px;
- padding: 0 10px;
- }
- </style>
|