MapOther.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. <template>
  2. <div class='map-view'>
  3. <van-nav-bar :title="`${floorName}平面图`" @click-left='backPage'>
  4. <template #left>
  5. <van-icon name="arrow-left" size="18" color="#333333" />
  6. </template>
  7. </van-nav-bar>
  8. <div id="bind-map-content">
  9. <canvas id="bind-canvas" ref="bind-canvas" tabindex="0"></canvas>
  10. <!-- 地图底部操作按钮 -->
  11. <div class='strip-bottom'>
  12. <canvasFun @fit='fit' @showText='showText' ref='canvasFun'></canvasFun>
  13. </div>
  14. <floor-list ref="fList" class="bind-floor-list" v-if='floorsArr.length>0' :floorsArr='floorsArr'
  15. @emitFloor='emitFloor'></floor-list>
  16. <div class="change-direction" @click='changeOri'>
  17. <i class="iconfont wanda-hengshuping"></i>
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. /**
  24. * 平面图展示
  25. */
  26. import Vue from 'vue'
  27. import { mapGetters } from 'vuex'
  28. import { NavBar, Toast } from 'vant'
  29. import floorList from "@/components/floorMap/floorList.vue"
  30. import canvasFun from '@/components/floorMap/canvasFun'
  31. import { readGroup, queryStatis, graphQuery } from '@/api/public'
  32. import { queryShops } from '@/api/equipmentList.js'
  33. import { FloorView } from '@/lib/FloorView'
  34. import { FloorScene } from '@/lib/FloorScene'
  35. import { STopologyParser } from '@/lib/parsers/STopologyParser'
  36. import { TipelineItem } from '@/lib/items/TipelineItem'
  37. import { SImageLegendItem } from '@/lib/items/SImageLegendItem'
  38. import { SImageItem, SImageShowType, SGraphItem } from '@saga-web/graph/lib'
  39. import { ProjectRf } from '@saga-web/feng-map'
  40. import { SFloorParser, ItemOrder, ItemColor, SPolygonItem, SBoardItem } from '@saga-web/big'
  41. import { SColor } from '@saga-web/draw/lib'
  42. Vue.use(NavBar).use(Toast)
  43. export default {
  44. name: 'MapOther',
  45. props: {},
  46. components: { floorList, canvasFun },
  47. computed: {
  48. ...mapGetters(['plazaId', 'fmapID', 'haveFengMap', 'bunkObj', 'categoryId']),
  49. },
  50. data() {
  51. return {
  52. view: '',
  53. scene: '',
  54. floorsArr: [],
  55. mapServerURL: "http://map.wanda.cn/editor",
  56. canvasLoading: false,
  57. floorid: '', //楼层id
  58. floorName: '', //楼层名
  59. count: 0, // 顶楼为多张图时计数器
  60. topologyParser: null, // 解析器数据
  61. fParser: null, // 底图解析器
  62. direction: '竖屏',
  63. }
  64. },
  65. props: {},
  66. beforeMount() { },
  67. mounted() {
  68. window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", () => {
  69. this.clearGraphy();
  70. setTimeout(() => {
  71. if (window.orientation === 0 || window.orientation === 180) {
  72. console.log("竖屏");
  73. }
  74. if (window.orientation === 90 || window.orientation === -90) {
  75. console.log("横屏");
  76. }
  77. document.getElementById("bind-canvas").width = document.getElementById("bind-map-content").offsetWidth;
  78. document.getElementById("bind-canvas").height = document.getElementById("bind-map-content").offsetHeight;
  79. this.init(this.floorid)
  80. }, 500)
  81. }, false);
  82. this.$nextTick(() => {
  83. document.getElementById("bind-canvas").width = document.getElementById("bind-map-content").offsetWidth;
  84. document.getElementById("bind-canvas").height = document.getElementById("bind-map-content").offsetHeight;
  85. })
  86. },
  87. methods: {
  88. backPage() {
  89. if (this.direction === '横屏') {
  90. this.roateY()
  91. this.direction = '竖屏'
  92. }
  93. this.$router.go(-1);
  94. },
  95. // 切换楼层
  96. emitFloor(floorObj) {
  97. if (floorObj) {
  98. this.$nextTick(() => {
  99. this.floorid = floorObj.gname;
  100. this.floorName = floorObj.code;
  101. this.init(floorObj.gname);
  102. })
  103. }
  104. },
  105. init(floorid) {
  106. // this.canvasLoading = true
  107. Toast.loading({
  108. duration: 0, // 持续展示 toast
  109. message: '加载中...',
  110. forbidClick: true,
  111. });
  112. // this.floorid = floorid
  113. // this.$refs.canvasFun.isShow = false
  114. setTimeout(() => {
  115. this.clearGraphy()
  116. this.scene = new FloorScene()
  117. if (this.haveFengMap == 1) {
  118. this.scene.selectContainer.connect('listChange', this, this.listChange)
  119. this.getGraphDetail().then((res) => {
  120. if (res.Content.length == 1) {
  121. const data = res.Content[0]
  122. if (data.MaxY && data.MinX) {
  123. window.fengmapData.maxY = data.MaxY
  124. window.fengmapData.minX = data.MinX
  125. }
  126. }
  127. this.parserData(floorid)
  128. })
  129. // this.parserData(floorid);
  130. } else if (this.haveFengMap == 0) {
  131. this.view.scene = this.scene
  132. this.readGraph()
  133. } else {
  134. this.canvasLoading = false
  135. Toast.clear();
  136. }
  137. }, 100)
  138. },
  139. // 解析底图
  140. parserData(floor) {
  141. if (floor == 'g80') {
  142. // 屋顶
  143. if (window.fengmapData.frImg) {
  144. const pj = this.fmapID.split('_')[0]
  145. // 单张图片
  146. if (!ProjectRf[pj]) {
  147. let imgItem = new SImageItem(null, `${this.mapServerURL}/webtheme/${this.fmapID}/${window.fengmapData.frImg}`)
  148. imgItem.showType = SImageShowType.AutoFit
  149. imgItem.connect('imgLoadOver', this, () => {
  150. this.readGraph()
  151. })
  152. this.scene.addItem(imgItem)
  153. this.view.scene = this.scene
  154. // this.view.fitSceneToView()
  155. } else {
  156. // 多张图
  157. try {
  158. // 初始化0
  159. this.count = 0
  160. ProjectRf[pj].forEach((t) => {
  161. const item = new SImageItem(null, `${this.mapServerURL}/webtheme/${this.fmapID}/${t.name}`)
  162. item.width = t.width
  163. item.height = t.height
  164. item.moveTo(t.x, t.y)
  165. item.connect('imgLoadOver', this, () => {
  166. this.countRf(ProjectRf[pj].length)
  167. })
  168. this.scene.addItem(item)
  169. })
  170. this.view.scene = this.scene
  171. } catch (e) {
  172. console.log(e)
  173. }
  174. }
  175. } else {
  176. // 屋顶图不为图片
  177. this.readBaseMap(floor)
  178. }
  179. } else {
  180. if (window.fengmapData.gnameToGid[floor]) {
  181. this.readBaseMap(floor)
  182. } else {
  183. console.log('楼层不正确')
  184. }
  185. }
  186. },
  187. // 解析楼地板
  188. loadBoard(floor) {
  189. window.fengmapData.loadFloor(floor, (res) => {
  190. const zone = new SBoardItem(null, res)
  191. this.scene.addItem(zone)
  192. })
  193. },
  194. readBaseMap(floor) {
  195. this.loadBoard(window.fengmapData.gnameToGid[floor])
  196. window.fengmapData.parseData(window.fengmapData.gnameToGid[floor], (res) => {
  197. if (res.err) {
  198. console.log('errr', res.err)
  199. return
  200. }
  201. this.fParser = new SFloorParser(null)
  202. this.fParser.parseData(res)
  203. this.fParser.spaceList.forEach((t) => {
  204. this.scene.addItem(t)
  205. t.nameSize = 12
  206. t.nameColor = '#2a2a2a'
  207. if (t.data.Name && this.bunkObj[t.data.Name]) {
  208. t.name = this.bunkObj[t.data.Name].brandname
  209. } else {
  210. // t.name = t.data.Name
  211. t.name = ''
  212. }
  213. })
  214. this.fParser.wallList.forEach((t) => this.scene.addItem(t))
  215. this.fParser.virtualWallList.forEach((t) => this.scene.addItem(t))
  216. this.fParser.doorList.forEach((t) => this.scene.addItem(t))
  217. this.fParser.columnList.forEach((t) => this.scene.addItem(t))
  218. this.fParser.casementList.forEach((t) => this.scene.addItem(t))
  219. this.view.scene = this.scene
  220. // this.view.fitSceneToView()
  221. this.readGraph()
  222. })
  223. },
  224. readGraph() {
  225. this.readGroup()
  226. .then((data) => {
  227. if (data.Result == 'failure') {
  228. this.$store.commit('SETISMESSAGE', false)
  229. this.view.fitSceneToView()
  230. this.view.minScale = this.view.scale
  231. if (this.$refs.canvasFun) {
  232. this.$refs.canvasFun.everyScale = this.view.scale
  233. }
  234. Toast.clear();
  235. return
  236. } else {
  237. if (
  238. data.Data[0].Elements.Nodes.length === 0 &&
  239. data.Data[0].Elements.Markers.length === 0 &&
  240. data.Data[0].Elements.Relations.length === 0
  241. ) {
  242. this.$store.commit('SETISMESSAGE', false)
  243. } else {
  244. this.$store.commit('SETISMESSAGE', true)
  245. }
  246. }
  247. // 无返回Data处理
  248. if (!(data.Data && data.Data.length)) {
  249. this.view.fitSceneToView()
  250. this.view.minScale = this.view.scale
  251. if (this.$refs.canvasFun) {
  252. this.$refs.canvasFun.everyScale = this.view.scale
  253. }
  254. return false
  255. }
  256. // // 请求回来的备注
  257. // if (data.Data && data.Data[0].Note) {
  258. // let note = data.Data[0].Note
  259. // bus.$emit('queryRemarksMethods', note)
  260. // } else {
  261. // bus.$emit('queryRemarksMethods', '')
  262. // }
  263. // //土建装饰的图例展示
  264. // if (this.$cookie.get('categoryId') == 'SCPZ') {
  265. // let scpzTable = [],
  266. // arr = []
  267. // scpzTable = data.Data[0].Elements.Nodes || []
  268. // console.log(scpzTable)
  269. // if (scpzTable.length > 0) {
  270. // scpzTable.forEach((e) => {
  271. // if (e.Properties.ItemExplain) {
  272. // let obj = e
  273. // arr.push(obj)
  274. // }
  275. // })
  276. // }
  277. // console.log(arr)
  278. // this.$store.commit('SETSCPZTABLE', arr)
  279. // }
  280. // if (data.Data[0].Elements.Nodes.length > 0) {
  281. // this.$store.commit('SETTYPENUM', '')
  282. // let Lengd = data.Data[0].Elements.Nodes
  283. // Lengd.forEach((el) => {
  284. // if (el.Type == 'Image' && el.Num > 1) {
  285. // console.log(el.Num)
  286. // this.$store.commit('SETTYPENUM', el.Num)
  287. // }
  288. // })
  289. // }
  290. // 放到后边 $cookie graphId
  291. // this.$cookie.set('graphId', data.Data[0].ID, 3)
  292. // if (this.$cookie.get('graphId')) {
  293. // // 得到graphId 就请求图例
  294. // // 除土建装饰之外的图例展示 包括楼层功能
  295. // bus.$emit('queryViewMethods')
  296. // }
  297. this.topologyParser = new STopologyParser(null)
  298. this.topologyParser.parseData(data.Data[0].Elements)
  299. // 多边形
  300. this.topologyParser.zoneLegendList.forEach((t) => {
  301. this.scene.addItem(t)
  302. // t.connect('legendItemClick', t, this.handleClickLegendItem)
  303. })
  304. // 增加文字
  305. this.topologyParser.textMarkerList.forEach((t) => {
  306. this.scene.addItem(t)
  307. })
  308. // 增加图片
  309. this.topologyParser.imageMarkerList.forEach((t) => {
  310. this.scene.addItem(t)
  311. })
  312. // 增加直线
  313. this.topologyParser.lineMarkerList.forEach((t) => {
  314. this.scene.addItem(t)
  315. })
  316. // 增加图标类图例
  317. this.topologyParser.imageLegendList.forEach((t) => {
  318. this.scene.addItem(t)
  319. // t.connect('legendItemClick', t, this.handleClickLegendItem)
  320. })
  321. // 增加管线类
  322. // 增加图标类图例
  323. this.topologyParser.relationList.forEach((t) => {
  324. t.selectable = true
  325. this.scene.addItem(t)
  326. // t.connect('legendItemClick', t, this.handleClickLegendItem)
  327. })
  328. // this.view.fitSceneToView()
  329. // this.view.minScale = this.view.scale
  330. if (this.$refs.canvasFun) {
  331. this.$refs.canvasFun.everyScale = this.view.scale
  332. }
  333. this.view.fitSceneToView()
  334. this.view.minScale = this.view.scale
  335. this.canvasLoading = false
  336. Toast.clear();
  337. })
  338. .catch(() => {
  339. this.canvasLoading = false
  340. Toast.clear();
  341. })
  342. },
  343. // 顶楼为多张图时计数器
  344. countRf(len) {
  345. this.count++
  346. if (len == this.count) {
  347. this.readGraph()
  348. } else {
  349. console.log('所有图片未加载完成')
  350. }
  351. },
  352. clearGraphy() {
  353. if (this.view) {
  354. this.view.scene = null
  355. return
  356. }
  357. this.view = new FloorView("bind-canvas");
  358. },
  359. listChange(item, ev) {
  360. if (ev[0].length) {
  361. // 选中电井设置电井关联的商铺高亮
  362. this.setHightLight(ev[0])
  363. } else {
  364. this.clearHightLight()
  365. }
  366. },
  367. // 选中电井关联的商铺高亮
  368. setHightLight(arr) {
  369. this.clearHightLight()
  370. arr.forEach((item) => {
  371. let location = item.data.AttachObjectIds[0] ? item.data.AttachObjectIds[0].id : ''
  372. // 添加了位置类型并且选中的类型为电井类型
  373. if (
  374. (item.data.GraphElementId == '100050' ||
  375. item.data.GraphElementId == '100055' ||
  376. item.data.GraphElementId == '100056' ||
  377. item.data.GraphElementId == '100057') &&
  378. location
  379. ) {
  380. let getParams = {
  381. plazaId: this.plazaId,
  382. floor: this.floorid,
  383. keyword: `${location}:wellnum;`,
  384. }
  385. queryShops({ getParams }).then((res) => {
  386. let shopsnumList = []
  387. if (res.data && res.data.length) {
  388. for (let floor in res.data[0]) {
  389. if (res.data[0][floor].length) {
  390. res.data[0][floor].forEach((v) => {
  391. shopsnumList = shopsnumList.concat(v.shopsnumList.split(','))
  392. })
  393. }
  394. }
  395. }
  396. if (shopsnumList.length) {
  397. this.fParser.spaceList.forEach((item) => {
  398. if (shopsnumList.findIndex((name) => name == item.data.Name) != -1) {
  399. item.highLightFlag = true
  400. item.zOrder = 30
  401. }
  402. })
  403. }
  404. })
  405. }
  406. })
  407. },
  408. // 清除电井关联商铺的高亮状态
  409. clearHightLight() {
  410. ItemColor.spaceHighColor = new SColor('#FBF2CC')
  411. this.fParser.spaceList.forEach((item) => {
  412. item.highLightFlag = false
  413. item.zOrder = ItemOrder.spaceOrder
  414. })
  415. },
  416. // 适配底图到窗口
  417. fit() {
  418. this.view.fitSceneToView()
  419. },
  420. // 小眼睛控制显示铺位名称
  421. showText(val) {
  422. this.fParser.spaceList.forEach((t) => {
  423. t.showBaseName = val
  424. })
  425. },
  426. // 读取数据
  427. readGroup() {
  428. const data = {
  429. BuildingID: '1',
  430. FloorID: this.floorid,
  431. categoryId: this.categoryId,
  432. projectId: this.plazaId,
  433. Pub: true,
  434. }
  435. return readGroup(data)
  436. },
  437. // 获取图最大最小值
  438. getGraphDetail() {
  439. const categoryId = this.categoryId
  440. const data = {
  441. Filters: `categoryId='${categoryId}';projectId='${this.plazaId}';BuildingID='1';FloorID='${this.floorid}';isPub=true`,
  442. }
  443. return graphQuery(data)
  444. },
  445. changeOri() {
  446. if (this.direction === '竖屏') {
  447. this.roateX()
  448. this.direction = '横屏'
  449. } else if (this.direction === '横屏') {
  450. this.roateY()
  451. this.direction = '竖屏'
  452. }
  453. },
  454. roateX() {
  455. console.log('横屏')
  456. window.webkit &&
  457. webkit.messageHandlers.cordova_iab.postMessage(
  458. JSON.stringify({
  459. method: 'roateX',
  460. })
  461. )
  462. },
  463. // 竖屏
  464. roateY() {
  465. console.log('竖屏')
  466. window.webkit &&
  467. webkit.messageHandlers.cordova_iab.postMessage(
  468. JSON.stringify({
  469. method: 'roateY',
  470. })
  471. )
  472. },
  473. },
  474. watch: {
  475. '$route.params.floor': {
  476. handler(floor) {
  477. if (this.$route.params.floorsArr) {
  478. this.floorsArr = this.$route.params.floorsArr;
  479. }
  480. this.$nextTick(() => {
  481. this.floorid = floor.FloorId;
  482. this.floorName = floor.FloorName;
  483. let index = this.floorsArr.findIndex(item => {
  484. return item.gname === floor.FloorId
  485. })
  486. let item = {
  487. gname: floor.FloorId,
  488. code: floor.FloorName
  489. }
  490. this.$refs.fList.tabFloor(item ,index);
  491. // this.$refs.fList.currentFloorId = floor.FloorId;
  492. // this.init(floor.FloorId);
  493. })
  494. },
  495. immediate: true,
  496. deep: true
  497. }
  498. },
  499. }
  500. </script>
  501. <style lang='less' scoped>
  502. .map-view {
  503. width: 100%;
  504. height: 100%;
  505. overflow: hidden;
  506. display: flex;
  507. flex-direction: column;
  508. #bind-map-content {
  509. width: 100%;
  510. height: calc(100% - 50px);
  511. position: relative;
  512. overflow: hidden;
  513. .bind-floor-list {
  514. position: fixed;
  515. top: 65px;
  516. right: 16px;
  517. }
  518. .strip-bottom {
  519. position: fixed;
  520. bottom: 60px;
  521. right: 16px;
  522. }
  523. .change-direction {
  524. position: fixed;
  525. bottom: 60px;
  526. left: 16px;
  527. .wanda-hengshuping {
  528. font-size: 26px;
  529. }
  530. }
  531. }
  532. }
  533. // 横屏
  534. @media screen and (orientation: landscape) {
  535. .map-view {
  536. /deep/ .van-nav-bar {
  537. height: 40px;
  538. }
  539. #bind-map-content {
  540. .bind-floor-list {
  541. position: fixed;
  542. top: 47px;
  543. right: 16px;
  544. }
  545. .strip-bottom {
  546. position: fixed;
  547. bottom: 15px;
  548. right: 60px;
  549. }
  550. .change-direction {
  551. position: fixed;
  552. bottom: 15px;
  553. left: 15px;
  554. .wanda-hengshuping {
  555. font-size: 26px;
  556. }
  557. }
  558. }
  559. }
  560. }
  561. </style>