| | |
| | | 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(); |
| | | |
| | | /** |
| | | * 卫星遥测网格管理 |
| | |
| | | constructor(name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | gridGroupId; |
| | | |
| | | // 默认地图网格相关对象 |
| | | mapViews; |
| | | |
| | | gridDataDetail; |
| | | |
| | | infoMap = new Map(); |
| | | |
| | | // 地图网格对象Map结构,存储对应key下的网格对象、网格坐标信息 |
| | | mapViewsMap = new Map(); |
| | | |
| | | gridStateMap = new Map(); |
| | | |
| | | // 网格数据Map结构,存储对应key下的网格监测数据信息 |
| | | gridDataDetailMap = new Map(); |
| | |
| | | firstEvent; |
| | | |
| | | events = new Map(); |
| | | |
| | | selectedFactorType; |
| | | |
| | | setShowFactorType(e) { |
| | | this.selectedFactorType = e; |
| | | this.changeGridColor({ factorName: e.name }); |
| | | this.changeText({ factorName: e.name }); |
| | | } |
| | | |
| | | // 绘制区县边界 |
| | | drawDistrict(districtName, isNew) { |
| | |
| | | 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'); |
| | |
| | | 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 |
| | | }); |
| | | }); |
| | | } |
| | | }); |
| | | } |
| | | } |
| | | |
| | | // 绘制监测数据排名文本 |
| | |
| | | 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'); |
| | |
| | | points: data, |
| | | textViews, |
| | | anchor: 'bottom-center', |
| | | type: 'rank' |
| | | type: 'rank', |
| | | factorName: this.selectedFactorType.name |
| | | }); |
| | | } |
| | | |
| | |
| | | // 根据绘制颜色方式绘制网格 |
| | | 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 |
| | | ); |
| | | } |
| | |
| | | drawTagGrid({ tag, data, grid, dataTxt, rankTxt, extData }) { |
| | | if (!this.mapViewsMap.has(tag)) { |
| | | const newMapViews = this._createNewMapViews({ extData }); |
| | | this.infoMap.set(tag, extData); |
| | | const newGridState = this._createNewGridState({ extData }); |
| | | this.gridStateMap.set(tag, newGridState); |
| | | this.mapViewsMap.set(tag, newMapViews); |
| | | this.gridDataDetailMap.set(tag, data); |
| | | } |
| | |
| | | }); |
| | | } |
| | | |
| | | deleteTagGrid(tags) { |
| | | this.changeVisibility({ |
| | | tags, |
| | | showGridViews: false, |
| | | showDataTxt: false, |
| | | showRankTxt: false |
| | | }); |
| | | tags.forEach((t) => { |
| | | this.mapViewsMap.delete(t); |
| | | this.gridDataDetailMap.delete(t); |
| | | this.gridStateMap.delete(t); |
| | | }); |
| | | } |
| | | |
| | | // 调整各类地图覆盖物的可见性 |
| | | changeVisibility({ tags = [], showGridViews, showDataTxt, showRankTxt }) { |
| | | let { _mapViewsList } = this._getMapViews(...tags); |
| | |
| | | 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; |
| | | } |
| | | }); |
| | | } |
| | | } |
| | |
| | | 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.showData = 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.showData = false; |
| | | } |
| | | }); |
| | | } |
| | | } |
| | |
| | | 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.showRank = 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.showRank = false; |
| | | } |
| | | }); |
| | | } |
| | | } |
| | |
| | | } |
| | | |
| | | 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.showCustomColor = useCustomColor; |
| | | const lastGridDataDetail = _gridDataDetailList[i]; |
| | | if (useCustomColor) { |
| | | if (v.showCustomColor) { |
| | | 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 } |
| | | ); |
| | | } |
| | |
| | | (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); |
| | | }); |
| | | } |
| | | |
| | |
| | | * 重叠的网格进行监测数据均值计算并重新计算对应颜色,形成新的一组融合网格 |
| | | * @param {Array} tags 需要融合的网格标签,当为空时,默认融合所有网格 |
| | | */ |
| | | mixGrid(tags, isMixGridHighlight) { |
| | | mixGrid({ tags, isMixGridHighlight = true }) { |
| | | tags.sort((a, b) => { |
| | | return a < b ? -1 : 1; |
| | | }); |
| | |
| | | tags: [mixTag], |
| | | showGridViews: true |
| | | }); |
| | | this.changeGridColor({ tag: mixTag, isMixGridHighlight }); |
| | | this.changeGridColor({ tags: [mixTag], isMixGridHighlight }); |
| | | } else { |
| | | // const mixMapViews = this._createNewMapViews(); |
| | | // 根据标签tag,获取对应多组网格数据 |
| | | let { _gridDataDetailList } = this._getMapViews(...tags); |
| | | const _dataMap = new Map(); |
| | |
| | | if (count > 1) { |
| | | v.res.gridStyle = { |
| | | strokeWeight: 2, |
| | | strokeColor: 'blue' |
| | | strokeColor: '#23dad1' |
| | | }; |
| | | } |
| | | resGridDataDetail.push(v.res); |
| | |
| | | data: resGridDataDetail, |
| | | grid: { |
| | | style: { |
| | | isMixGridHighlight: |
| | | isMixGridHighlight == undefined ? true : isMixGridHighlight |
| | | isMixGridHighlight |
| | | } |
| | | }, |
| | | extData: { |
| | |
| | | return mixTag; |
| | | } |
| | | |
| | | /** |
| | | * 绘制热力图网格 |
| | | * @param {string} tag |
| | | */ |
| | | drawHeatGrid(tag) { |
| | | if (!this.mapViewsMap.has(tag) || !this.gridDataDetailMap.has(tag)) { |
| | | return; |
| | | } |
| | | |
| | | const heatTag = `heat-${tag}`; |
| | | if (this.mapViewsMap.has(heatTag)) { |
| | | 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: [heatTag], |
| | | tags: [mixTag], |
| | | showGridViews: true |
| | | }); |
| | | this.changeGridColor({ tags: [mixTag], isMixGridHighlight }); |
| | | } else { |
| | | const _mapViews = this.mapViewsMap.get(tag); |
| | | const _gridDataDetail = this.gridDataDetailMap.get(tag); |
| | | // const groupId = _gridDataDetail[0].groupId; |
| | | // const cellId = _gridDataDetail.cellId; |
| | | |
| | | const originCellIdList = _gridDataDetail.map((v) => v.cellId); |
| | | let headGridDataDetailList = []; |
| | | |
| | | const width = 120; |
| | | const height = 90; |
| | | const eachwidth = 10; |
| | | const eachheight = 10; |
| | | |
| | | const searchLength = 3; |
| | | |
| | | const _dataMap = new Map(); |
| | | |
| | | _gridDataDetail.forEach((gdd) => { |
| | | const searchRes = this.search( |
| | | gdd, |
| | | width, |
| | | height, |
| | | eachwidth, |
| | | eachheight, |
| | | searchLength |
| | | ); |
| | | if (searchRes.find(v=> v.cellId == 1670)) { |
| | | console.log(); |
| | | |
| | | gridDataDetailList.forEach((gdd) => { |
| | | // 网格数据是融合的,展示高亮的样式 |
| | | if (gdd.mixData) { |
| | | gdd.gridStyle = { |
| | | strokeWeight: 2, |
| | | strokeColor: '#23dad1' |
| | | }; |
| | | } |
| | | searchRes.forEach((e) => { |
| | | if (originCellIdList.indexOf(e.cellId) == -1) { |
| | | if (!_dataMap.has(e.cellId)) { |
| | | _dataMap.set(e.cellId, { |
| | | source: [], |
| | | res: {} |
| | | }); |
| | | } |
| | | _dataMap.get(e.cellId).source.push(e); |
| | | } |
| | | }); |
| | | }); |
| | | |
| | | _dataMap.forEach((v, k) => { |
| | | let total = 0, |
| | | count = v.source.length; |
| | | v.source.forEach((s) => { |
| | | total += s.pm25; |
| | | }); |
| | | v.res = { |
| | | isHeatData: true, |
| | | groupId: v.source[0].groupId, |
| | | cellId: v.source[0].cellId, |
| | | pm25: count == 0 ? null : Math.round((total / count) * 10) / 10, |
| | | originData: v.source |
| | | }; |
| | | headGridDataDetailList.push(v.res); |
| | | }); |
| | | headGridDataDetailList = headGridDataDetailList.concat(_gridDataDetail); |
| | | |
| | | // 重新按照监测数据排序并标记排名 |
| | | headGridDataDetailList.sort((a, b) => { |
| | | return b.pm25 - a.pm25; |
| | | }); |
| | | headGridDataDetailList.forEach((gdd, i) => { |
| | | gdd.rank = i + 1; |
| | | }); |
| | | |
| | | this.drawTagGrid({ |
| | | tag: heatTag, |
| | | data: headGridDataDetailList, |
| | | // grid: { |
| | | // style: { |
| | | // isMixGridHighlight: |
| | | // isMixGridHighlight == undefined ? true : isMixGridHighlight |
| | | // } |
| | | // }, |
| | | tag: mixTag, |
| | | data: gridDataDetailList, |
| | | grid: { |
| | | style: { |
| | | isMixGridHighlight |
| | | } |
| | | }, |
| | | extData: { |
| | | name: `走航热力图 - ${heatTag}`, |
| | | type: 2 |
| | | name: `走航融合 - ${mixTag}`, |
| | | type: 1 |
| | | } |
| | | }); |
| | | } |
| | | |
| | | return heatTag; |
| | | return mixTag; |
| | | } |
| | | |
| | | drawHeatGrid2(tag, headGridDataDetailList) { |
| | |
| | | }), |
| | | gridPoints: JSON.parse(JSON.stringify(this.mapViews.gridPoints)), |
| | | points: JSON.parse(JSON.stringify(this.mapViews.points)), |
| | | extData |
| | | extData, |
| | | show: true |
| | | }; |
| | | } |
| | | |
| | | _createNewGridState({ extData }) { |
| | | return { |
| | | type: undefined, |
| | | name: '', |
| | | showGrid: true, |
| | | showRank: false, |
| | | showData: false, |
| | | showCustomColor: false, |
| | | showHeatMap: false, |
| | | highlightFusionGrid: false, |
| | | showUnderway: false, |
| | | opacityValue: 1 |
| | | }; |
| | | } |
| | | } |