<template>
|
<div class="dimension-cut">
|
<el-radio-group v-model="dimensionValue"
|
size="medium"
|
@change="dimensionChange">
|
<el-radio-button label="2.5维"></el-radio-button>
|
<el-radio-button label="3 维"></el-radio-button>
|
</el-radio-group>
|
</div>
|
</template>
|
|
<script>
|
|
import axios from 'axios'
|
import { mapGetters } from 'vuex'
|
|
export default {
|
name: 'dimension',
|
data () {
|
return {
|
DC: null,
|
dimensionValue: '2.5维',
|
// 建筑2.5D地图
|
newLayer: null,
|
// 电子地图
|
vecLayer: null,
|
// 标注
|
cvaLayer: null,
|
// 建筑2.5D面数据
|
areaLayer: null,
|
provider: null,
|
wallLayer: null,
|
tileset: null,
|
tilesetLayer: null,
|
titlesetLayerFlag: false,
|
silhouetteBlue: null,
|
wallArr: [
|
[116.41526036, 27.95352217, 100],
|
[116.41128018, 27.95789328, 100],
|
[116.40246486, 27.96397110, 100],
|
[116.39728537, 27.96779573, 100],
|
[116.39588026, 27.96862679, 100],
|
[116.38903705, 27.97029865, 100],
|
[116.38872398, 27.97051829, 100],
|
[116.38892229, 27.97090120, 100],
|
[116.38906721, 27.97190632, 100],
|
[116.38706808, 27.97195638, 100],
|
[116.38649076, 27.97114448, 100],
|
[116.38214070, 27.97312735, 100],
|
[116.37876213, 27.97582549, 100],
|
[116.37851310, 27.97664153, 100],
|
[116.37634915, 27.98039526, 100],
|
[116.37439220, 27.98131916, 100],
|
[116.36995935, 27.97936074, 100],
|
[116.37217247, 27.97498147, 100],
|
[116.35099819, 27.97539586, 100],
|
[116.35103749, 27.98088050, 100],
|
[116.33972460, 27.97987911, 100],
|
[116.33950071, 27.97372028, 100],
|
[116.32313266, 27.97004136, 100],
|
[116.32606743, 27.95863979, 100],
|
[116.34788837, 27.92538024, 100],
|
[116.34566310, 27.92338627, 100],
|
[116.34874490, 27.91718915, 100],
|
[116.35311999, 27.91804451, 100],
|
[116.35109257, 27.92284807, 100],
|
[116.35975153, 27.92900526, 100],
|
[116.35660704, 27.93816236, 100],
|
[116.39585177, 27.93945304, 100],
|
[116.41526036, 27.95352217, 100]
|
]
|
}
|
},
|
computed: {
|
...mapGetters([
|
'viewer',
|
// 社区内导航的显示关闭
|
'campusNavFlag',
|
'orgNavBarFlag',
|
'arcNavBarFlag'
|
])
|
},
|
created () {
|
this.DC = global.DC
|
},
|
watch: {
|
viewer: {
|
immediate: true,
|
handler (newCode, oldCode) {
|
if (this.titlesetLayerFlag == false && newCode != null) {
|
var that = this
|
|
that.tilesetLayer = new that.DC.TilesetLayer('tilesetLayer')
|
that.viewer.addLayer(that.tilesetLayer)
|
that.tileset = new that.DC.Tileset(
|
'/mx/tileset.json',
|
{
|
luminanceAtZenith: 0.5
|
}
|
)
|
that.tilesetLayer.addOverlay(that.tileset)
|
that.tilesetLayer.show = false
|
|
that.silhouetteBlue = that.DC.Namespace.Cesium.PostProcessStageLibrary.createEdgeDetectionStage()
|
that.silhouetteBlue.uniforms.color = that.DC.Namespace.Cesium.Color.fromBytes(9, 162, 40)
|
that.silhouetteBlue.uniforms.length = 0.01
|
that.silhouetteBlue.selected = []
|
|
that.viewer.scene.postProcessStages.add(
|
that.DC.Namespace.Cesium.PostProcessStageLibrary.createSilhouetteStage([
|
that.silhouetteBlue
|
])
|
)
|
|
var highlighted = {
|
feature: undefined,
|
originalColor: new that.DC.Namespace.Cesium.Color()
|
}
|
|
var selected = {
|
feature: undefined,
|
originalColor: new that.DC.Namespace.Cesium.Color()
|
}
|
|
that.tileset.on(that.DC.MouseEventType.CLICK, e => {
|
that.viewer.scene.globe.depthTestAgainstTerrain = false
|
|
that.$store.commit('CLEAR_ALL', null)
|
|
var imgArr = ['http://223.82.109.183:2081/zhxy/upload/20220105/3c05dd70a9eac17b7e49afbfc7b1b68e.png']
|
|
that.$store.commit('SET_POPUPBGURL', imgArr[0])
|
that.$store.commit('SET_POPUPQRURL', 'http://223.82.109.183:2081/zhxy/upload/20211222/9c324adea5d9e5b50cd8f874d5f780f4.png')
|
that.$store.commit('SET_POINTPOSITION', [Number(e.wgs84Position.lng), Number(e.wgs84Position.lat), Number(e.wgs84Position.alt), Number(0), Number(0), Number(0)])
|
that.$store.commit('SET_STATENAME', e.overlay.attr.name)
|
that.$store.commit('SET_SITENAME', e.overlay.attr['地址'])
|
that.$store.commit('SET_POPUPIMGATLAS', imgArr)
|
|
// 定制化窗体
|
// eslint-disable-next-line no-unused-vars
|
var popup = new that.DC.DivForms(that.viewer, {
|
domId: 'divFormsDomBox',
|
position: [
|
that.DC.Transform.transformWGS84ToCartesian(new that.DC.Position(Number(e.wgs84Position.lng), Number(e.wgs84Position.lat), Number(e.wgs84Position.alt)))
|
]
|
})
|
|
this.$store.commit('SET_PANORAMAPOPUP', false)
|
this.$store.commit('SET_MONITORPOPUP', false)
|
this.$store.commit('SET_DETAILSPOPUP', true)
|
})
|
|
// that.tileset.on(that.DC.MouseEventType.MOUSE_MOVE, e => {
|
// that.silhouetteBlue.selected = []
|
|
// if (that.DC.Namespace.Cesium.defined(highlighted.feature)) {
|
// highlighted.feature.color = highlighted.originalColor
|
// highlighted.feature = undefined
|
// }
|
|
// if (e.feature !== selected.feature) {
|
// that.silhouetteBlue.selected = [e.feature]
|
|
// highlighted.feature = e.feature
|
|
// that.DC.Namespace.Cesium.Color.clone(
|
// e.feature.color,
|
// highlighted.originalColor
|
// )
|
// e.feature.color = that.DC.Namespace.Cesium.Color.fromBytes(155, 255, 175)
|
// }
|
// })
|
|
// var provider = new that.DC.Namespace.Cesium.WebMapTileServiceImageryProvider({
|
// url: 'http://www.tdtfz.com/OneMapServer/rest/services/fzsw2019/MapServer/WMTS/tile/1.0.0/fzsw2019/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}',
|
// layer: 'fzsw2019',
|
// style: 'default',
|
// tileMatrixSetID: 'default028mm',
|
// format: 'image/jpgpng',
|
// tilingScheme: new that.DC.Namespace.Cesium.GeographicTilingScheme(),
|
// maximumLevel: 19,
|
// tileMatrixLabels: [
|
// '0',
|
// '1',
|
// '2',
|
// '3',
|
// '4',
|
// '5',
|
// '6',
|
// '7',
|
// '8',
|
// '9',
|
// '10',
|
// '11',
|
// '12',
|
// '13',
|
// '14',
|
// '15',
|
// '16',
|
// '17',
|
// '18',
|
// '19'
|
// ]
|
// })
|
|
var provider = new that.DC.Namespace.Cesium.UrlTemplateImageryProvider({
|
url: '/wp/{z}/{x}/{y}.png',
|
fileExtension: 'png'
|
})
|
|
that.newLayer = that.viewer.imageryLayers.addImageryProvider(provider)
|
|
that.wallLayer = new that.DC.VectorLayer('wallLayer')
|
// that.viewer.addLayer(that.wallLayer)
|
|
that.wallArr.forEach(item => {
|
item = item.join(',')
|
})
|
that.wallArr = that.wallArr.join(';')
|
const wall = new that.DC.Wall(
|
that.wallArr
|
)
|
wall.setStyle({
|
material: new that.DC.WallTrailMaterialProperty({
|
color: that.DC.Namespace.Cesium.Color.fromBytes(0, 142, 255, 150),
|
// color: that.DC.Color.CYAN,
|
speed: 10
|
})
|
})
|
// that.wallLayer.addOverlay(wall)
|
|
// that.viewer.camera.setView({
|
// // Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// // fromDegrees()方法,将经纬度和高程转换为世界坐标
|
// destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.03928791, 27.62954732, 1000.0),
|
// orientation: {
|
// // 指向
|
// heading: that.DC.Namespace.Cesium.Math.toRadians(0, 0),
|
// // 视角
|
// pitch: that.DC.Namespace.Cesium.Math.toRadians(-90),
|
// roll: 0.0
|
// }
|
// })
|
|
// setTimeout(() => {
|
// that.viewer.camera.flyTo({
|
// // Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// // fromDegrees()方法,将经纬度和高程转换为世界坐标
|
// destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.0351, 27.6314, 200.0),
|
// duration: 5,
|
// complete: () => {
|
// that.viewer.camera.flyTo({
|
// // Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// // fromDegrees()方法,将经纬度和高程转换为世界坐标
|
// destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.0351, 27.6314, 200.0),
|
// orientation: {
|
// // 指向
|
// heading: that.DC.Namespace.Cesium.Math.toRadians(108),
|
// // 视角
|
// pitch: that.DC.Namespace.Cesium.Math.toRadians(-26.46),
|
// roll: 0.0
|
// }
|
// })
|
// }
|
// })
|
// }, 3000)
|
that.titlesetLayerFlag = true
|
|
that.viewer.camera.setView({
|
// Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// fromDegrees()方法,将经纬度和高程转换为世界坐标
|
destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.039779, 27.629696, 600.0),
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(0, 0),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-90),
|
roll: 0.0
|
}
|
})
|
|
that.viewer.on(that.DC.SceneEventType.CAMERA_CHANGED, that.camerAzoom())
|
// 最小
|
that.viewer.scene.screenSpaceCameraController.minimumZoomDistance = 1.0
|
// 最大
|
that.viewer.scene.screenSpaceCameraController.maximumZoomDistance = 3000
|
|
// 设置相机缩小时的速率
|
// that.viewer.scene.screenSpaceCameraController._minimumZoomRate = 30000
|
// 设置相机放大时的速率
|
that.viewer.scene.screenSpaceCameraController._maximumZoomRate = 5906376272000
|
// 视角平移
|
that.viewer.scene.screenSpaceCameraController.enableRotate = true
|
// 视角缩放
|
that.viewer.scene.screenSpaceCameraController.enableZoom = true
|
// 视角旋转
|
that.viewer.scene.screenSpaceCameraController.enableTilt = false
|
|
that.areaLayer = new that.DC.VectorLayer('areaLayer')
|
that.viewer.addLayer(that.areaLayer)
|
|
// axios.get('http://arcgis.jxpskj.com:6080/arcgis/rest/services/lxxqwxq/MapServer/0/query?where=1%3D1&text=&objectIds=&time=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&relationParam=&outFields=*&returnGeometry=true&maxAllowableOffset=&geometryPrecision=&outSR=&returnIdsOnly=false&returnCountOnly=false&orderByFields=&groupByFieldsForStatistics=&outStatistics=&returnZ=false&returnM=false&gdbVersion=&returnDistinctValues=false&returnTrueCurves=false&resultOffset=&resultRecordCount=&f=pjson').then(resultData => {
|
// resultData.data.features.forEach(item => {
|
// item.geometry.rings[0].forEach(it => {
|
// it = it.join(',')
|
// })
|
|
// item.geometry.rings[0] = item.geometry.rings[0].join(';')
|
|
// const polygon = new that.DC.Polygon(item.geometry.rings[0])
|
|
// polygon.setStyle({
|
|
// material: that.DC.Namespace.Cesium.Color.fromBytes(255, 255, 255, 255)
|
|
// })
|
|
// that.areaLayer.addOverlay(polygon)
|
// })
|
|
// that.areaLayer.show = false
|
// })
|
|
document.querySelector('.dc-zoom-controller').children[1].onclick = function () {
|
if (that.dimensionValue == '3 维') {
|
that.viewer.camera.setView({
|
// Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// fromDegrees()方法,将经纬度和高程转换为世界坐标
|
destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.04062292, 27.62666834, 220.0),
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(-9),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-34.54),
|
roll: 0.0
|
}
|
})
|
} else {
|
that.viewer.camera.setView({
|
// Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// fromDegrees()方法,将经纬度和高程转换为世界坐标
|
destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.039779, 27.629696, 600.0),
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(0, 0),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-90),
|
roll: 0.0
|
}
|
})
|
}
|
}
|
}
|
}
|
}
|
},
|
methods: {
|
dimensionChange () {
|
var that = this
|
if (that.dimensionValue == '3 维') {
|
// that.wallLayer.show = false
|
that.viewer.imageryLayers.remove(that.newLayer)
|
that.newLayer = null
|
that.vecLayer = that.viewer.imageryLayers.addImageryProvider(new that.DC.Namespace.Cesium.WebMapTileServiceImageryProvider({
|
url: ' http://t1.tianditu.gov.cn/vec_w/wmts?tk=9ae78c51a0a28f06444d541148496e36',
|
type: 'wmts',
|
layer: 'vec',
|
style: 'default',
|
format: 'tiles',
|
tileMatrixSetID: 'w',
|
show: true,
|
maximumLevel: 18
|
}))
|
|
that.cvaLayer = that.viewer.imageryLayers.addImageryProvider(new that.DC.Namespace.Cesium.WebMapTileServiceImageryProvider({
|
url: ' http://t1.tianditu.gov.cn/cva_w/wmts?tk=9ae78c51a0a28f06444d541148496e36',
|
type: 'wmts',
|
layer: 'cva',
|
style: 'default',
|
format: 'tiles',
|
tileMatrixSetID: 'w',
|
show: true,
|
maximumLevel: 18
|
}))
|
that.silhouetteBlue.selected = []
|
that.tilesetLayer.show = true
|
that.viewer.off(that.DC.SceneEventType.CAMERA_CHANGED, that.camerAzoom())
|
|
// 最小
|
that.viewer.scene.screenSpaceCameraController.minimumZoomDistance = 1.0
|
// 最大
|
that.viewer.scene.screenSpaceCameraController.maximumZoomDistance = Number.POSITIVE_INFINITY
|
// 视角旋转
|
that.viewer.scene.screenSpaceCameraController.enableTilt = true
|
|
that.viewer.camera.setView({
|
// Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// fromDegrees()方法,将经纬度和高程转换为世界坐标
|
destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.04062292, 27.62666834, 220.0),
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(-9),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-34.54),
|
roll: 0.0
|
}
|
})
|
} else {
|
that.tilesetLayer.show = false
|
that.viewer.imageryLayers.remove(that.vecLayer)
|
that.vecLayer = null
|
that.viewer.imageryLayers.remove(that.cvaLayer)
|
that.cvaLayer = null
|
|
// var provider = new that.DC.Namespace.Cesium.ArcGisMapServerImageryProvider({
|
// url: 'http://arcgis.jxpskj.com:6080/arcgis/rest/services/PingXiang25DMapQP/MapServer'
|
// })
|
|
var provider = new that.DC.Namespace.Cesium.UrlTemplateImageryProvider({
|
url: '/wp/{z}/{x}/{y}.png',
|
fileExtension: 'png'
|
})
|
|
that.newLayer = that.viewer.imageryLayers.addImageryProvider(provider)
|
|
// that.wallLayer.show = true
|
|
that.viewer.camera.setView({
|
// Cesium的坐标是以地心为原点,一向指向南美洲,一向指向亚洲,一向指向北极州
|
// fromDegrees()方法,将经纬度和高程转换为世界坐标
|
destination: that.DC.Namespace.Cesium.Cartesian3.fromDegrees(114.039779, 27.629696, 600.0),
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(0, 0),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-90),
|
roll: 0.0
|
}
|
})
|
|
that.viewer.on(that.DC.SceneEventType.CAMERA_CHANGED, that.camerAzoom())
|
// 最小
|
that.viewer.scene.screenSpaceCameraController.minimumZoomDistance = 1.0
|
// 最大
|
that.viewer.scene.screenSpaceCameraController.maximumZoomDistance = 3000
|
// 视角旋转
|
that.viewer.scene.screenSpaceCameraController.enableTilt = false
|
}
|
},
|
|
camerAzoom () {
|
var that = this
|
const height = Math.ceil(that.viewer.camera.positionCartographic.height)
|
|
that.viewer.camera.setView({
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(0, 0),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-90),
|
roll: 0.0
|
}
|
})
|
|
if (height < 100) {
|
that.viewer.camera.setView({
|
destination: that.DC.Namespace.Cesium.Cartesian3.fromRadians(that.viewer.camera.positionCartographic.longitude, that.viewer.camera.positionCartographic.latitude, 100),
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(0, 0),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-90),
|
roll: 0.0
|
}
|
})
|
};
|
if (height > 3000) {
|
that.viewer.camera.setView({
|
destination: that.DC.Namespace.Cesium.Cartesian3.fromRadians(that.viewer.camera.positionCartographic.longitude, that.viewer.camera.positionCartographic.latitude, 3000),
|
orientation: {
|
// 指向
|
heading: that.DC.Namespace.Cesium.Math.toRadians(0, 0),
|
// 视角
|
pitch: that.DC.Namespace.Cesium.Math.toRadians(-90),
|
roll: 0.0
|
}
|
})
|
}
|
}
|
}
|
|
}
|
</script>
|
|
<style lang='scss' scope>
|
.dimension-cut {
|
position: fixed;
|
top: 100px;
|
right: 10px;
|
width: auto;
|
// height: 40px;
|
z-index: 1;
|
}
|
</style>
|