Commit f349e541 authored by lei's avatar lei

init排水系统

parent e441cbb6
This diff is collapsed.
...@@ -4,10 +4,15 @@ ...@@ -4,10 +4,15 @@
v-if="showMenu === 0" v-if="showMenu === 0"
style="position: absolute; top: 0; left: 0; right: 0; bottom: 0" style="position: absolute; top: 0; left: 0; right: 0; bottom: 0"
></home> ></home>
<psxt
v-if="showMenu === 3"
style="position: absolute; top: 0; left: 0; right: 0; bottom: 0"
></psxt>
<v-scale-screen <v-scale-screen
ref="scale-screen" ref="scale-screen"
width="1920" width="1920"
height="1080" height="1080"
class="psxt-bg"
:fullScreen="true" :fullScreen="true"
> >
<div class="container"> <div class="container">
...@@ -30,7 +35,12 @@ ...@@ -30,7 +35,12 @@
> >
<p>环境监测</p> <p>环境监测</p>
</div> </div>
<div class="sub-item" key="" :class="showMenu == 1 ? 'active' : ''"> <div
class="sub-item"
@click="changeMenu(3)"
key=""
:class="showMenu == 3 ? 'active' : ''"
>
<p>排水系统</p> <p>排水系统</p>
</div> </div>
</div> </div>
...@@ -64,6 +74,7 @@ ...@@ -64,6 +74,7 @@
import screenfull from "screenfull"; import screenfull from "screenfull";
import rydw from "./items/rydw.vue"; import rydw from "./items/rydw.vue";
import hjjc from "./items/hjjc.vue"; import hjjc from "./items/hjjc.vue";
import psxt from "./items/psxt.vue";
import home from "./items/home.vue"; import home from "./items/home.vue";
export default { export default {
name: "cockpit", name: "cockpit",
...@@ -71,6 +82,7 @@ export default { ...@@ -71,6 +82,7 @@ export default {
home, home,
rydw, rydw,
hjjc, hjjc,
psxt,
}, },
data() { data() {
return { return {
...@@ -369,6 +381,9 @@ export default { ...@@ -369,6 +381,9 @@ export default {
.poa { .poa {
position: absolute; position: absolute;
} }
.psxt-bg {
background: url("~@/assets/images/screen/psxt/bg.png") no-repeat center;
}
/* 基础容器 */ /* 基础容器 */
.container { .container {
width: 100%; width: 100%;
......
...@@ -143,7 +143,6 @@ ...@@ -143,7 +143,6 @@
</div> </div>
</div> </div>
</div> </div>
<!-- 弹窗内容 -->
</div> </div>
</template> </template>
<script> <script>
...@@ -698,8 +697,6 @@ export default { ...@@ -698,8 +697,6 @@ export default {
color: #fdfeff; color: #fdfeff;
font-size: 16px; font-size: 16px;
font-weight: 500; font-weight: 500;
&.is-checked {
}
} }
} }
} }
......
...@@ -12,7 +12,8 @@ export default { ...@@ -12,7 +12,8 @@ export default {
created() { created() {
var that = this; var that = this;
this.$nextTick(() => { this.$nextTick(() => {
Cesium.Ion.defaultAccessToken = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI2ZmY5ZWUyZS00MjQwLTQzZjUtYTBjZi02ZWZiYzJhMmY2NTYiLCJpZCI6MTMxMzY5LCJpYXQiOjE3NDE2NzY4Mzh9.QD-8cQI_VqPG2t-S8KxLyMFux0R429lfTdhQWrdeWhE"; Cesium.Ion.defaultAccessToken =
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI2ZmY5ZWUyZS00MjQwLTQzZjUtYTBjZi02ZWZiYzJhMmY2NTYiLCJpZCI6MTMxMzY5LCJpYXQiOjE3NDE2NzY4Mzh9.QD-8cQI_VqPG2t-S8KxLyMFux0R429lfTdhQWrdeWhE";
const viewer = new Cesium.Viewer("cesiumContainer", { const viewer = new Cesium.Viewer("cesiumContainer", {
homeButton: false, homeButton: false,
sceneModePicker: false, sceneModePicker: false,
...@@ -38,7 +39,9 @@ export default { ...@@ -38,7 +39,9 @@ export default {
// 调整模型高度 // 调整模型高度
var heightOffset = -330.0; // 调整这个值以匹配地形高度 var heightOffset = -330.0; // 调整这个值以匹配地形高度
var boundingSphere = tileset.boundingSphere; var boundingSphere = tileset.boundingSphere;
var cartographic = Cesium.Cartographic.fromCartesian(boundingSphere.center); var cartographic = Cesium.Cartographic.fromCartesian(
boundingSphere.center
);
var surface = Cesium.Cartesian3.fromRadians( var surface = Cesium.Cartesian3.fromRadians(
cartographic.longitude, cartographic.longitude,
...@@ -60,7 +63,7 @@ export default { ...@@ -60,7 +63,7 @@ export default {
tileset.modelMatrix = Cesium.Matrix4.fromTranslation(translation); tileset.modelMatrix = Cesium.Matrix4.fromTranslation(translation);
tileset.maximumMemoryUsage = 1024 * 1024 ; tileset.maximumMemoryUsage = 1024 * 1024;
tileset.maximumScreenSpaceError = 4; tileset.maximumScreenSpaceError = 4;
// 开启地形深度检测 // 开启地形深度检测
......
<template>
<div class="app-container home">
<div id="cesiumContainer"></div>
</div>
</template>
<script>
export default {
name: "cesium",
data() {
return {};
},
created() {},
methods: {},
};
</script>
<style scoped lang="scss">
.home {
width: 100%;
height: 100%;
background: url("~@/assets/images/screen/psxt/bg.png") no-repeat center;
display: flex;
justify-content: center;
padding-top: 155px;
#cesiumContainer {
width: 1800px;
height: 745px;
background: url("~@/assets/images/screen/psxt/gd.png") no-repeat center;
background-size: 1800px 745px;
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment