123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- <template>
- <div class="sm-function-module-content" v-show="otherOptions">
- <div class="sm-function-module-sub-section">
- <label class="label-container">{{ Resource.viewMode }}</label>
- <select class="sm-select" v-model="viewMode">
- <option value="3D">3D</option>
- <option value="2.5D">2.5D</option>
- <option value="2D">2D</option>
- </select>
- </div>
- <div class="sm-function-module-sub-section">
- <label class="label-container">{{ Resource.multiViewport }}</label>
- <select class="sm-select" v-model="multiViewport">
- <option value="NONE">{{ Resource.onePort }}</option>
- <option value="HORIZONTAL">{{ Resource.horizontalSnap }}</option>
- <option value="VERTICAL">{{ Resource.verticalSnap }}</option>
- <option value="TRIPLE">{{ Resource.tripeSnap }}</option>
- <option value="QUAD">{{ Resource.quadSnap }}</option>
- </select>
- </div>
- <div class="sm-function-module-sub-section">
- <label class="label-container">{{ Resource.sceneFlood }}</label>
- <br />
- <div class="flexbox">
- <label class="sm-viewshed-label-right">{{
- Resource.openSceneFlood
- }}</label>
- <input type="checkbox" v-model="openSceneFlood" />
- <div style="width: 45%"></div>
- </div>
- <div class="sm-function-module-sub-section">
- <label class="label-container">{{ Resource.threshold }}</label>
- <input
- class="sm-input-long"
- min="0"
- max="1"
- step="0.01"
- type="number"
- v-model="threshold"
- />
- </div>
- <div class="sm-function-module-sub-section">
- <label class="label-container">{{ Resource.bloomIntensity }}</label>
- <input
- class="sm-input-long"
- min="0"
- max="10"
- step="0.5"
- type="number"
- v-model="bloomIntensity"
- />
- </div>
- </div>
- <label class="label-container">{{ Resource.split }}</label>
- <div class="flexbox">
- <label class="sm-viewshed-label-right">{{ Resource.useRoller }}</label>
- <input type="checkbox" v-model="useRoller" />
- <label class="sm-viewshed-label-right">{{
- Resource.imageryRoller
- }}</label>
- <input type="checkbox" v-model="imageryRoller" />
- </div>
- <div class="sm-function-module-sub-section flexbox">
- <label class="label-container rollerLaber" for="lrRoller">{{
- Resource.lrRoller
- }}</label>
- <input
- type="radio"
- name="lrtbRoller"
- id="lrRoller"
- value="lrRoller"
- v-model="lrtbRoller"
- />
- <label class="label-container rollerLaber" for="tbRoller">{{
- Resource.tbRoller
- }}</label>
- <input
- type="radio"
- name="lrtbRoller"
- id="tbRoller"
- value="tbRoller"
- v-model="lrtbRoller"
- />
- </div>
- <div
- class="sm-function-module-sub-section flexbox"
- v-show="lrtbRoller == 'lrRoller'"
- >
- <label class="label-container rollerLaber" for="leftRoller">{{
- Resource.leftRoller
- }}</label>
- <input
- type="radio"
- name="lrRoller"
- id="leftRoller"
- value="leftRoller"
- v-model="lrRoller"
- />
- <label class="label-container rollerLaber" for="rightRoller">{{
- Resource.rightRoller
- }}</label>
- <input
- type="radio"
- name="lrRoller"
- id="rightRoller"
- value="rightRoller"
- v-model="lrRoller"
- />
- </div>
- <div
- class="sm-function-module-sub-section flexbox"
- v-show="lrtbRoller == 'tbRoller'"
- >
- <label class="label-container rollerLaber" for="topRoller">{{
- Resource.topRoller
- }}</label>
- <input
- type="radio"
- name="tbRoller"
- id="topRoller"
- value="topRoller"
- v-model="tbRoller"
- />
- <label class="label-container rollerLaber" for="bomRoller">{{
- Resource.bottomRoller
- }}</label>
- <input
- type="radio"
- name="tbRoller"
- id="bomRoller"
- value="bomRoller"
- v-model="tbRoller"
- />
- </div>
- </div>
- </template>
- <script>
- let rollerShutterConfig;
- import { setImageryRoller,hideImageryRoller } from "@/utils/MapHelper/map.js";
- export default {
- name: "sceneOtherOptions",
- data() {
- return {
- sharedState: store.state,
- isDestroyFlag: true,
- viewMode: "3D",
- multiViewport: "NONE",
- openSceneFlood: false,
- threshold: 0.6,
- bloomIntensity: 2.0,
- useRoller: false,
- imageryRoller: false,
- lrtbRoller: "lrRoller",
- lrRoller: "leftRoller",
- tbRoller: "topRoller",
- };
- },
- computed: {
- otherOptions: function () {
- return this.sharedState.sceneAtttribute[4];
- },
- SceneAtttributeShow: function () {
- return this.sharedState.toolBar[3];
- },
- },
- beforeDestroy() {
- // if (this.isDestroyFlag && camera) {
- // camera = undefined;
- // if (flyCircleDrawHandler) {
- // // flyCircleDrawHandler.destroy();
- // flyCircleDrawHandler = undefined;
- // }
- // if (flyManager) {
- // flyManager.destroy();
- // flyManager = this.undefined;
- // }
- // }
- },
- mounted() {
- if (this.SceneAtttributeShow && this.otherOptions) {
- this.init();
- }
- this.multiViewport = store.state.splitType;
- this.bus.$on("setImageryRoller", this.setImageryRollers);
- },
- methods: {
- //子组件部分
- init() {
- if (rollerShutterConfig) {
- return;
- }
- let windowWidth = document.body.clientWidth; // 窗口宽度
- let windowHeight = document.body.clientHeight; // 窗口高度
- // 卷帘配置参数,以对象方式实现地址传递
- rollerShutterConfig = {
- splitDirection: Cesium.SplitDirection.NONE,
- verticalSplitPosition: windowWidth / 2,
- horizontalSplitPosition: windowHeight / 2,
- };
- if (!document.getElementById("verticalSlider")) {
- let f = document.getElementById("cesiumContainer");
- let v = document.createElement("div");
- let h = document.createElement("div");
- v.classList.add("verticalSlider");
- v.id = "verticalSlider";
- h.id = "horizontalSlider";
- v.style.display = "none";
- h.style.display = "none";
- f.appendChild(v);
- f.appendChild(h);
- }
- this.setRollerShutterSplit();
- this.bindSliderEvt();
- },
- /**
- * 设置卷帘的分割方向及分割条的位置。
- *
- */
- setRollerShutterSplit() {
- let splitPosition = null;
- if (
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.LEFT ||
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.RIGHT
- ) {
- splitPosition = rollerShutterConfig.verticalSplitPosition;
- viewer.scene.imagerySplitPosition.x =
- rollerShutterConfig.verticalSplitPosition / document.body.clientWidth;
- } else if (
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.TOP ||
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.BOTTOM
- ) {
- splitPosition = rollerShutterConfig.horizontalSplitPosition;
- viewer.scene.imagerySplitPosition.y =
- rollerShutterConfig.horizontalSplitPosition /
- document.body.clientHeight;
- }
- for (let layer of scene.layers.layerQueue) {
- layer.splitDirection = rollerShutterConfig.splitDirection;
- if (splitPosition) {
- // 如果禁用卷帘就没有必要设置分割位置
- layer.splitPosition = splitPosition;
- }
- }
- },
- setImageryRollerMode: function () {
- store.setrollerType(rollerShutterConfig.splitDirection);
- // let imageryLayers = viewer.imageryLayers;
- // for (let i = 0; i < imageryLayers.length; i++) {
- // let imageryLayer = imageryLayers.get(i);
- // if (this.imageryRoller) this.setImageryRoller(imageryLayer)
- // else this.hideImageryRoller(imageryLayer)
- // }
- //案例展示
- let imageryLayer = viewer.imageryLayers.get(1);
- if (this.imageryRoller) setImageryRoller(imageryLayer,rollerShutterConfig);
- else hideImageryRoller(imageryLayer);
- },
- setImageryRollers(imageryLayer) {
- if (this.imageryRoller) setImageryRoller(imageryLayer,rollerShutterConfig);
- else hideImageryRoller(imageryLayer);
- },
- /**
- * 注册卷帘分割条的拖拽事件。
- */
- bindSliderEvt: function () {
- let verticalSlider = document.getElementById("verticalSlider");
- let horizontalSlider = document.getElementById("horizontalSlider");
- verticalSlider.addEventListener("mousedown", mouseDown, false);
- horizontalSlider.addEventListener("mousedown", mouseDown, false);
- let windowHeight = document.body.clientHeight;
- let me = this;
- document.addEventListener("mouseup", mouseUp, false);
- function mouseUp(e) {
- document.removeEventListener("mousemove", sliderMove, false);
- }
- function mouseDown(e) {
- document.addEventListener("mousemove", sliderMove, false);
- }
- function sliderMove(e) {
- // 鼠标拖拽时执行
- // 解决拖拽鼠标粘滞的问题
- if (e.preventDefault) {
- e.preventDefault();
- } else {
- e.returnValue = false;
- }
- if (
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.LEFT ||
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.RIGHT
- ) {
- verticalSlider.style.left = e.clientX + "px";
- rollerShutterConfig.verticalSplitPosition = e.clientX;
- } else if (
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.TOP ||
- rollerShutterConfig.splitDirection === Cesium.SplitDirection.BOTTOM
- ) {
- let clientY = e.clientY;
- if (clientY < 0) {
- clientY = 0;
- } else if (clientY > windowHeight) {
- clientY = windowHeight - document.body.clientHeight;
- }
- horizontalSlider.style.top = clientY + "px";
- rollerShutterConfig.horizontalSplitPosition = windowHeight - clientY;
- }
- me.setRollerShutterSplit();
- }
- },
- // 更新卷帘
- updataLrRoller() {
- switch (this.lrRoller) {
- case "leftRoller":
- rollerShutterConfig.splitDirection = Cesium.SplitDirection.LEFT;
- break;
- case "rightRoller":
- rollerShutterConfig.splitDirection = Cesium.SplitDirection.RIGHT;
- break;
- default:
- break;
- }
- this.setImageryRollerMode();
- this.setRollerShutterSplit();
- },
- updaeTbRoller() {
- switch (this.tbRoller) {
- case "topRoller":
- rollerShutterConfig.splitDirection = Cesium.SplitDirection.TOP;
- break;
- case "bomRoller":
- rollerShutterConfig.splitDirection = Cesium.SplitDirection.BOTTOM;
- break;
- default:
- break;
- }
- this.setImageryRollerMode();
- this.setRollerShutterSplit();
- },
- },
- watch: {
- otherOptions(val) {
- if (val) {
- this.init();
- }
- },
- viewMode(value) {
- if (value === "2D") {
- viewer.scene.mode = Cesium.SceneMode.SCENE2D;
- } else if (value === "3D") {
- viewer.scene.mode = Cesium.SceneMode.SCENE3D;
- } else if (value === "2.5D") {
- viewer.scene.mode = Cesium.SceneMode.COLUMBUS_VIEW;
- }
- },
- multiViewport(value) {
- scene.multiViewportMode = Cesium.MultiViewportMode[value];
- store.setsplitType(value);
- },
- openSceneFlood(val) {
- viewer.scene.bloomEffect.show = val;
- viewer.scene.hdrEnabled = val;
- viewer.scene.toneMappingEnabled = val;
- viewer.scene.bloomEffect.threshold = Number(this.threshold);
- viewer.scene.bloomEffect.bloomIntensity = Number(this.bloomIntensity);
- },
- threshold(val) {
- viewer.scene.bloomEffect.threshold = Number(val);
- },
- bloomIntensity(val) {
- viewer.scene.bloomEffect.bloomIntensity = Number(val);
- },
- useRoller(val) {
- let verticalSlider = document.getElementById("verticalSlider");
- let horizontalSlider = document.getElementById("horizontalSlider");
- if (val) {
- switch (this.lrtbRoller) {
- case "lrRoller":
- verticalSlider.style.display = "block";
- horizontalSlider.style.display = "none";
- this.updataLrRoller();
- break;
- case "tbRoller":
- verticalSlider.style.display = "none";
- horizontalSlider.style.display = "block";
- this.updaeTbRoller();
- break;
- default:
- break;
- }
- } else {
- rollerShutterConfig.splitDirection = Cesium.SplitDirection.NONE;
- verticalSlider.style.display = "none";
- horizontalSlider.style.display = "none";
- this.setImageryRollerMode();
- this.setRollerShutterSplit();
- }
- },
- imageryRoller(val) {
- this.setImageryRollerMode();
- // this.setRollerShutterSplit();
- },
- lrtbRoller(val) {
- let verticalSlider = document.getElementById("verticalSlider");
- let horizontalSlider = document.getElementById("horizontalSlider");
- switch (val) {
- case "lrRoller":
- verticalSlider.style.display = "block";
- horizontalSlider.style.display = "none";
- this.updataLrRoller();
- break;
- case "tbRoller":
- verticalSlider.style.display = "none";
- horizontalSlider.style.display = "block";
- this.updaeTbRoller();
- break;
- default:
- break;
- }
- },
- lrRoller(val) {
- this.updataLrRoller();
- },
- tbRoller(val) {
- this.updaeTbRoller();
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- @import "otherOptions";
- </style>
|