MoreScreenUse.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. <template>
  2. <div id="more-screen-map-use" class="h100">
  3. <iframe id="i_map_more_screen" name="i_map" frameborder="0" class="h100">
  4. </iframe>
  5. <div class="my-b" :class="'split'+num">
  6. <div v-for="item in screenList.slice(0,num)">
  7. <single-screen-select :position="item.position" :mapID ="item.mapID" :viewID="item.viewID" :clickHandleID="item.clickHandleID" :key="item.id" />
  8. </div>
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. import CityGis from "@/unit/map/CityGis.Bridge";
  14. import {previewMapBridge} from "@/unit/map/map";
  15. import {
  16. previewChangeSplitScreen,
  17. } from "@/unit/map/addLayer.js";
  18. import {onMounted,onBeforeUnmount} from "vue";
  19. import SingleScreenSelect from "@/views/c-views/right-tool/more-screen/SingleScreenSelect.vue";
  20. let bridge1
  21. export default {
  22. name: "MoreScreenUse",
  23. components: {SingleScreenSelect},
  24. props:{
  25. type:{
  26. },
  27. num:{
  28. }
  29. },
  30. setup(props){
  31. const screenList=[
  32. {
  33. id:'0003',
  34. mapID:'map0',
  35. viewID:'viewDiv_0',
  36. clickHandleID:'m_clickHandle_0',
  37. position:{
  38. x:'20%',
  39. y:'12%'
  40. }
  41. },
  42. {
  43. id:'0004',
  44. mapID:'map1',
  45. viewID:'viewDiv_1',
  46. clickHandleID:'m_clickHandle_1',
  47. position:{
  48. x:'70%',
  49. y:'12%'
  50. }
  51. },
  52. {
  53. id:'0005',
  54. mapID:'map2',
  55. viewID:'viewDiv_2',
  56. clickHandleID:'m_clickHandle_2',
  57. position:{
  58. x:'20%',
  59. y:'60%'
  60. }
  61. },
  62. {
  63. id:'0006',
  64. mapID:'map3',
  65. viewID:'viewDiv_3',
  66. clickHandleID:'m_clickHandle_3',
  67. position:{
  68. x:'70%',
  69. y:'60%'
  70. }
  71. },
  72. {
  73. id:'0007',
  74. mapID:'map4',
  75. viewID:'viewDiv_4',
  76. clickHandleID:'m_clickHandle_4',
  77. position:{
  78. x:'20%',
  79. y:'60%'
  80. }
  81. },
  82. {
  83. id:'0008',
  84. mapID:'map5',
  85. viewID:'viewDiv_5',
  86. clickHandleID:'m_clickHandle_5',
  87. position:{
  88. x:'70%',
  89. y:'60%'
  90. }
  91. }
  92. ]
  93. onMounted(() => {
  94. previewMapBridge.bridgeContent = bridge1 = new CityGis.Bridge({
  95. id: "i_map_more_screen",
  96. url:'http://localhost:8081/#/jk_map?theme=dark&type=3D',
  97. //url: 'https://cimweb.zjw.sh.cegn.cn:2007/VUE-Map-Tool-Widget/#/jk_map?theme=dark&type=3D', //建科发布
  98. onReady: function () {
  99. console.log(previewMapBridge)
  100. }
  101. })
  102. previewChangeSplitScreen({
  103. status:"show",
  104. num:props.num
  105. });
  106. })
  107. // onBeforeUnmount(() => {
  108. // previewChangeSplitScreen({
  109. // status:"hide"
  110. // })
  111. // previewMapBridge.bridgeContent = bridge1 = ''
  112. // })
  113. return {
  114. screenList
  115. }
  116. },
  117. // mounted() {
  118. //
  119. // //加载地图控件
  120. //
  121. // // else if(this.type == 'basicInfo'){
  122. // // console.log("basicInfo");
  123. // // setPreLocation({
  124. // // x:1607.0472500617975,
  125. // // y:851.1274763445955,
  126. // // z:2008.3021969236434,
  127. // // heading:0,
  128. // // tilt:0
  129. // // })
  130. // // drawPreGeometryGraphic(geometry.onePlace)
  131. // //
  132. // // }
  133. // // else if(this.type == 'historyAnalysis'){
  134. // // previewChangeSplitScreen({
  135. // // status:"show",
  136. // // num:4,
  137. // // display:"line"
  138. // // });
  139. // // AddSinglePreviewLayer({
  140. // // "id": "D9002000520150601",
  141. // // "title": "1948航空影像",
  142. // // "visible": true,
  143. // // "opacity": 1,
  144. // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/42358ea887237436d688c1f3eee1d5f6/cxjsjtfz",
  145. // // "type": "切片地图",
  146. // // "mapID":"map0"
  147. // // })
  148. // // AddSinglePreviewLayer({
  149. // // "id": "D9002000820150701",
  150. // // "title": "1979航空影像",
  151. // // "visible": true,
  152. // // "opacity": 1,
  153. // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/e5b67176b70ec8b9ca036ec12399a19e/cxjsjtfz",
  154. // // "type": "切片地图",
  155. // // "mapID":"map1"
  156. // // })
  157. // // AddSinglePreviewLayer({
  158. // // "id": "D9002001620150701",
  159. // // "title": "1994航空影像",
  160. // // "visible": true,
  161. // // "opacity": 1,
  162. // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/3a510027e4244a66a14586cd9db2f035/cxjsjtfz",
  163. // // "type": "切片地图",
  164. // // "mapID":"map2"
  165. // // })
  166. // // AddSinglePreviewLayer({
  167. // // "id": "D9002000620150601",
  168. // // "title": "2015航空影像",
  169. // // "visible": true,
  170. // // "opacity": 1,
  171. // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/b52dd54a7778fc6b6710465a3d804dfe/cxjsjtfz",
  172. // // "type": "切片地图",
  173. // // "mapID":"map3"
  174. // // })
  175. // // drawPreGeometryGraphic(geometry.onePlace,"viewDiv_0");
  176. // // drawPreGeometryGraphic(geometry.onePlace,"viewDiv_1");
  177. // // drawPreGeometryGraphic(geometry.onePlace,"viewDiv_2");
  178. // // drawPreGeometryGraphic(geometry.onePlace,"viewDiv_3");
  179. // // setPreLocation({
  180. // // x:1507.0472500617975,
  181. // // y:801.1274763445955,
  182. // // z:1008.3021969236434,
  183. // // heading:0,
  184. // // tilt:0,
  185. // // viewID: "viewDiv_0"
  186. // // })
  187. // // }
  188. // // else if(this.type == "cimShow"){
  189. // // clearPreviewBaseMapLayer();
  190. // // setPreviewLocation({
  191. // // "heading": 85.48893113525105,
  192. // // "tilt": 50.86609683511964,
  193. // // "x": -10038.704295309626,
  194. // // "y": -1305.6942494130299,
  195. // // "z": 9596.450770324096,
  196. // // })
  197. // // AddSinglePreviewLayer({
  198. // // "id": "csgx_bim",
  199. // // "title": "城市更新BIM",
  200. // // "visible": true,
  201. // // "opacity": 1,
  202. // // "url": "https://server1.geoscene.gis/server/rest/services/Hosted/csgx_gldx/SceneServer",
  203. // // "type": "scene"
  204. // // })
  205. // // }
  206. // // bridge1.addEventListener((arg) => {
  207. // // debugger
  208. // // switch (arg.action) {
  209. // // case "MapIsReady":
  210. // // if(this.type == 'moreScreen'){
  211. // // previewChangeSplitScreen({
  212. // // status:"show",
  213. // // num:4
  214. // // });
  215. // // }else if(this.type == 'historyAnalysis'){
  216. // // debugger
  217. // // previewChangeSplitScreen({
  218. // // status:"show",
  219. // // num:4,
  220. // // display:"line"
  221. // // });
  222. // // // AddSinglePreviewLayer({
  223. // // // "id": "D9002000520150601",
  224. // // // "title": "1948航空影像",
  225. // // // "visible": true,
  226. // // // "opacity": 1,
  227. // // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/42358ea887237436d688c1f3eee1d5f6/cxjsjtfz",
  228. // // // "type": "切片地图",
  229. // // // "mapID":"map0"
  230. // // // })
  231. // // // AddSinglePreviewLayer({
  232. // // // "id": "D9002000820150701",
  233. // // // "title": "1979航空影像",
  234. // // // "visible": true,
  235. // // // "opacity": 1,
  236. // // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/e5b67176b70ec8b9ca036ec12399a19e/cxjsjtfz",
  237. // // // "type": "切片地图",
  238. // // // "mapID":"map1"
  239. // // // })
  240. // // // AddSinglePreviewLayer({
  241. // // // "id": "D9002001620150701",
  242. // // // "title": "1994航空影像",
  243. // // // "visible": true,
  244. // // // "opacity": 1,
  245. // // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/3a510027e4244a66a14586cd9db2f035/cxjsjtfz",
  246. // // // "type": "切片地图",
  247. // // // "mapID":"map2"
  248. // // // })
  249. // // // AddSinglePreviewLayer({
  250. // // // "id": "D9002000620150601",
  251. // // // "title": "2015航空影像",
  252. // // // "visible": true,
  253. // // // "opacity": 1,
  254. // // // "url": "http://www.smi.sh.cegn.cn/ServiceRight/proxy/b52dd54a7778fc6b6710465a3d804dfe/cxjsjtfz",
  255. // // // "type": "切片地图",
  256. // // // "mapID":"map3"
  257. // // // })
  258. // // }
  259. // // break;
  260. // // }
  261. // // });
  262. //
  263. // },
  264. }
  265. </script>
  266. <style scoped lang="scss">
  267. #more-screen-map-use{
  268. .my-b{
  269. display: flex;
  270. flex-wrap: wrap;
  271. >div{
  272. position: relative;
  273. }
  274. &.split2{
  275. >div{
  276. width: 50%;
  277. height: 100%;
  278. box-sizing: border-box;
  279. }
  280. }
  281. &.split4{
  282. >div{
  283. width: 50%;
  284. height: 50%;
  285. box-sizing: border-box;
  286. }
  287. }
  288. &.split6{
  289. >div{
  290. width: 33.3%;
  291. height: 50%;
  292. box-sizing: border-box;
  293. }
  294. }
  295. position: absolute;
  296. left: 0;
  297. right: 0;
  298. top: 0;
  299. bottom: 0;
  300. }
  301. left:0;
  302. top:0;
  303. z-index: 1;
  304. width: 100%;
  305. height: 95%;
  306. position: relative;
  307. :deep .esri-ui{
  308. right:50px !important;
  309. }
  310. #i_map_more_screen{
  311. position: relative;
  312. z-index: 3;
  313. width: 100%;
  314. height: 100%;
  315. }
  316. }
  317. </style>