|
@@ -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)
|
|
|
+ }
|
|
|
}
|