From aa75a9d46ee325f0a92e42f733aabb1f92103aeb Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 28 三月 2025 17:44:29 +0800 Subject: [PATCH] 走航融合模块完成 --- src/model/SatelliteGrid.js | 216 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 188 insertions(+), 28 deletions(-) diff --git a/src/model/SatelliteGrid.js b/src/model/SatelliteGrid.js index d6f3c8c..2ca4d43 100644 --- a/src/model/SatelliteGrid.js +++ b/src/model/SatelliteGrid.js @@ -1,7 +1,10 @@ import calculate from '@/utils/map/calculate'; import gridMapUtil from '@/utils/map/grid'; import { map, onMapMounted } from '@/utils/map/index_old'; -import { useCloned } from '@vueuse/core'; +import { getGridDataDetailFactorValue } from '@/model/GridDataDetail'; +import { useGridStore } from '@/stores/grid-info'; + +const gridStore = useGridStore(); /** * 鍗槦閬ユ祴缃戞牸绠$悊 @@ -10,6 +13,9 @@ constructor(name) { this.name = name; } + + gridGroupId; + // 榛樿鍦板浘缃戞牸鐩稿叧瀵硅薄 mapViews; @@ -28,6 +34,14 @@ firstEvent; events = new Map(); + + selectedFactorType; + + setShowFactorType(e) { + this.selectedFactorType = e; + this.changeGridColor({ factorName: e.name }); + this.changeText({ factorName: e.name }); + } // 缁樺埗鍖哄幙杈圭晫 drawDistrict(districtName, isNew) { @@ -132,8 +146,7 @@ const data = gridDataDetail.map((v, i) => { return { lnglat_GD: points[i], - // data: v.pm25 ? (v.pm25 + '渭g/m鲁') : '' - data: v.pm25 ? v.pm25 : '' + data: getGridDataDetailFactorValue(v, this.selectedFactorType.name) }; }); // return gridMapUtil.drawGridTextLabel(data, textViews, labelsLayer, 'bottom'); @@ -143,8 +156,54 @@ anchor: 'top-center', type: 'data', isCustomColor, - useColor + useColor, + factorName: this.selectedFactorType.name }); + } + + changeText({ tags = [], factorName, isCustomColor, useColor, type }) { + let { _mapViewsList, _gridDataDetailList } = this._getMapViews(...tags); + if (_mapViewsList.length == _gridDataDetailList.length) { + _mapViewsList.forEach((v, i) => { + if (v.dataTxt) { + let dataList = []; + if (type == 'data' || type == undefined) { + dataList.push({ + type: 'data', + data: _gridDataDetailList[i].map((v) => { + return { + data: getGridDataDetailFactorValue( + v, + factorName ? factorName : this.selectedFactorType.name + ) + }; + }) + }); + } + if (type == 'rank' || type == undefined) { + dataList.push({ + type: 'rank', + data: _gridDataDetailList[i].map((v) => { + return { + data: v.rank ? v.rank : '' + }; + }) + }); + } + + dataList.forEach((d) => { + gridMapUtil.changeGridText({ + points: d.data, + textViews: d.type == 'data' ? v.dataTxt : v.rankTxt, + type: d.type, + isCustomColor, + useColor, + factorName: factorName ? factorName : this.selectedFactorType.name + }); + }); + } + }); + } } // 缁樺埗鐩戞祴鏁版嵁鎺掑悕鏂囨湰 @@ -152,8 +211,7 @@ const data = gridDataDetail.map((v, i) => { return { lnglat_GD: points[i], - // data: v.pm25 ? ('鎺掑悕: ' + v.rank) : '' - data: v.pm25 ? v.rank : '' + data: v.rank ? v.rank : '' }; }); // return gridMapUtil.drawGridTextLabel(data, textViews, labelsLayer, 'top'); @@ -161,7 +219,8 @@ points: data, textViews, anchor: 'bottom-center', - type: 'rank' + type: 'rank', + factorName: this.selectedFactorType.name }); } @@ -196,12 +255,16 @@ // 鏍规嵁缁樺埗棰滆壊鏂瑰紡缁樺埗缃戞牸 let resGridViews; if (customColor) { - resGridViews = gridMapUtil.drawGridColorCustom(res, gridDataDetail); + resGridViews = gridMapUtil.drawGridColorCustom( + res, + gridDataDetail, + this.selectedFactorType.name + ); } else { resGridViews = gridMapUtil.drawGridColor( res, gridDataDetail, - 'PM25', + this.selectedFactorType.name, style ); } @@ -301,7 +364,12 @@ } deleteTagGrid(tags) { - this.changeVisibility({ tags, showGridViews: false }); + this.changeVisibility({ + tags, + showGridViews: false, + showDataTxt: false, + showRankTxt: false + }); tags.forEach((t) => { this.mapViewsMap.delete(t); this.gridDataDetailMap.delete(t); @@ -316,12 +384,18 @@ if (showGridViews) { // map.add(this.mapViews.lastGridViews); _mapViewsList.forEach((v) => { - if (v.lastGridViews) map.add(v.lastGridViews); + if (v.lastGridViews) { + map.add(v.lastGridViews); + v.show = true; + } }); } else { // map.remove(this.mapViews.lastGridViews); _mapViewsList.forEach((v) => { - if (v.lastGridViews) map.remove(v.lastGridViews); + if (v.lastGridViews) { + map.remove(v.lastGridViews); + v.show = false; + } }); } } @@ -329,12 +403,18 @@ if (showDataTxt) { // map.add(this.mapViews.dataTxt); _mapViewsList.forEach((v) => { - if (v.dataTxt) map.add(v.dataTxt); + if (v.dataTxt) { + map.add(v.dataTxt); + v.show = true; + } }); } else { // map.remove(this.mapViews.dataTxt); _mapViewsList.forEach((v) => { - if (v.dataTxt) map.remove(v.dataTxt); + if (v.dataTxt) { + map.remove(v.dataTxt); + v.show = false; + } }); } } @@ -342,12 +422,18 @@ if (showRankTxt) { // map.add(this.mapViews.rankTxt); _mapViewsList.forEach((v) => { - if (v.rankTxt) map.add(v.rankTxt); + if (v.rankTxt) { + map.add(v.rankTxt); + v.show = true; + } }); } else { // map.remove(this.mapViews.rankTxt); _mapViewsList.forEach((v) => { - if (v.rankTxt) map.remove(v.rankTxt); + if (v.rankTxt) { + map.remove(v.rankTxt); + v.show = false; + } }); } } @@ -373,27 +459,30 @@ } changeGridColor({ - tag, + tags = [], + factorName, useCustomColor, opacity, zIndex, isMixGridHighlight }) { - let { _mapViewsList, _gridDataDetailList } = this._getMapViews(tag); + let { _mapViewsList, _gridDataDetailList } = this._getMapViews(...tags); if (_mapViewsList.length == _gridDataDetailList.length) { _mapViewsList.forEach((v, i) => { if (v.lastGridViews) { + if (useCustomColor != undefined) v.useCustomColor = useCustomColor; const lastGridDataDetail = _gridDataDetailList[i]; - if (useCustomColor) { + if (v.useCustomColor) { gridMapUtil.drawGridColorCustom( v.lastGridViews, - lastGridDataDetail + lastGridDataDetail, + factorName ? factorName : this.selectedFactorType.name ); } else { gridMapUtil.drawGridColor( v.lastGridViews, lastGridDataDetail, - 'PM25', + factorName ? factorName : this.selectedFactorType.name, { opacity, zIndex, isMixGridHighlight } ); } @@ -428,9 +517,41 @@ (v) => v.cellId == cellIndex ); polygon.on(name, (e) => { - event(gridCell, gridDataDetail); + event({ gridCell, gridDataDetail, polygon, extData: v.extData }); }); }); + }); + } + + setDefaultGridClickEvent(tags) { + this.setGridEvent( + tags, + 'click', + ({ gridCell, gridDataDetail, extData }) => { + gridStore.selectedGridCellAndDataDetail = { + gridCell, + gridDataDetail, + extData + }; + } + ); + + //榧犳爣绉诲叆浜嬩欢 + this.setGridEvent(tags, 'mouseover', ({ polygon }) => { + const ext = polygon.getExtData(); + const originOption = polygon.getOptions(); + ext.originOption = originOption; + polygon.setOptions({ + strokeWeight: 2, + strokeColor: 'red' + }); + polygon.setExtData(ext); + }); + + //榧犳爣绉诲嚭浜嬩欢 + this.setGridEvent(tags, 'mouseout', ({ polygon }) => { + const ext = polygon.getExtData(); + polygon.setOptions(ext.originOption); }); } @@ -455,7 +576,7 @@ * 閲嶅彔鐨勭綉鏍艰繘琛岀洃娴嬫暟鎹潎鍊艰绠楀苟閲嶆柊璁$畻瀵瑰簲棰滆壊锛屽舰鎴愭柊鐨勪竴缁勮瀺鍚堢綉鏍� * @param {Array} tags 闇�瑕佽瀺鍚堢殑缃戞牸鏍囩锛屽綋涓虹┖鏃讹紝榛樿铻嶅悎鎵�鏈夌綉鏍� */ - mixGrid(tags, isMixGridHighlight) { + mixGrid({ tags, isMixGridHighlight = true }) { tags.sort((a, b) => { return a < b ? -1 : 1; }); @@ -465,7 +586,7 @@ tags: [mixTag], showGridViews: true }); - this.changeGridColor({ tag: mixTag, isMixGridHighlight }); + this.changeGridColor({ tags: [mixTag], isMixGridHighlight }); } else { // const mixMapViews = this._createNewMapViews(); // 鏍规嵁鏍囩tag锛岃幏鍙栧搴斿缁勭綉鏍兼暟鎹� @@ -502,7 +623,7 @@ if (count > 1) { v.res.gridStyle = { strokeWeight: 2, - strokeColor: 'blue' + strokeColor: '#23dad1' }; } resGridDataDetail.push(v.res); @@ -520,8 +641,46 @@ data: resGridDataDetail, grid: { style: { - isMixGridHighlight: - isMixGridHighlight == undefined ? true : isMixGridHighlight + isMixGridHighlight + } + }, + extData: { + name: `璧拌埅铻嶅悎 - ${mixTag}`, + type: 1 + } + }); + } + + return mixTag; + } + + mixGrid2({ tags, isMixGridHighlight = true, gridDataDetailList }) { + tags.sort((a, b) => { + return a < b ? -1 : 1; + }); + const mixTag = tags.join('-'); + if (this.mapViewsMap.has(mixTag)) { + this.changeVisibility({ + tags: [mixTag], + showGridViews: true + }); + this.changeGridColor({ tags: [mixTag], isMixGridHighlight }); + } else { + gridDataDetailList.forEach((gdd) => { + // 缃戞牸鏁版嵁鏄瀺鍚堢殑锛屽睍绀洪珮浜殑鏍峰紡 + if (gdd.mixData) { + gdd.gridStyle = { + strokeWeight: 2, + strokeColor: '#23dad1' + }; + } + }); + this.drawTagGrid({ + tag: mixTag, + data: gridDataDetailList, + grid: { + style: { + isMixGridHighlight } }, extData: { @@ -808,7 +967,8 @@ }), gridPoints: JSON.parse(JSON.stringify(this.mapViews.gridPoints)), points: JSON.parse(JSON.stringify(this.mapViews.points)), - extData + extData, + show: true }; } } -- Gitblit v1.9.3