浏览代码

fext 添加底图

yunxing 4 年之前
父节点
当前提交
b2775d7860
共有 2 个文件被更改,包括 20 次插入4 次删除
  1. 2 3
      src/components/baseEditer.vue
  2. 18 1
      src/components/mapClass/EditScence.ts

+ 2 - 3
src/components/baseEditer.vue

@@ -236,9 +236,8 @@ export default {
             // TODO: 修改底图
             bus.$on('changeImgUrl', val => {
                 window.vm = this
-                this.scene.upadataImageUrl(val)
-                this.scene.updatedWidth(this.canvasWidth)
-                this.scene.updatedHeight(this.canvasHeight)
+                let url = '/serve/topology-wanda/Picture/query/' + val
+                this.scene.setBackgroundImgItem(url)
                 this.view.fitSceneToView()
             })
             bus.$on('changeText', val => {

+ 18 - 1
src/components/mapClass/EditScence.ts

@@ -11,6 +11,7 @@ import {
     SGraphPointListUpdate,
     SGraphAddCommand,
 } from '@saga-web/graph/lib'
+import { SImageShowType } from '@saga-web/graph/lib/enums/SImageShowType'
 import { SZoneLegendItem } from '@/lib/items/SZoneLegendItem'
 import { SSCPZZoneLegendItem } from '@/lib/items/SSCPZZoneLegendItem'
 import { SFHFQZoneLegendItem } from '@/lib/items/SFHFQZoneLegendItem'
@@ -58,6 +59,8 @@ export class EditScence extends SGraphScene {
             this.view.update()
         }
     }
+    private backgroundImgItem: SImageItem | null = null
+
     /** 绘制区域时 是否为点选   */
     isSelecting: boolean = false
 
@@ -600,7 +603,7 @@ export class EditScence extends SGraphScene {
      * 更改item Url
      * @param url string 图片key
      */
-     upadataImageUrl(url: string, type: [number, undefined]): void {
+    upadataImageUrl(url: string, type: [number, undefined]): void {
         if (this.focusItem) {
             if (!type) {
                 this.focusItem.url = '/serve/topology-wanda/Picture/query/' + url
@@ -1075,4 +1078,18 @@ export class EditScence extends SGraphScene {
             Line: Line,
         }
     } // Function absorbSpaceLine()
+    /**
+     *
+     */
+    setBackgroundImgItem(url: string): void {
+        let imgItem = new SImageItem(null)
+        if (this.backgroundImgItem) {
+            this.backgroundImgItem.parent = null
+        }
+        this.backgroundImgItem = imgItem
+        imgItem.showType = SImageShowType.AutoFit
+        imgItem.url = url
+        imgItem.zOrder = -1000
+        this.addItem(imgItem)
+    }
 }