From e29fffcbf6cbc426c459156f072ba2edac1716e5 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期三, 06 三月 2024 09:13:44 +0800
Subject: [PATCH] #
---
zy-asrs-flow/src/pages/map/utils.js | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 deletions(-)
diff --git a/zy-asrs-flow/src/pages/map/utils.js b/zy-asrs-flow/src/pages/map/utils.js
index ace7582..bef2076 100644
--- a/zy-asrs-flow/src/pages/map/utils.js
+++ b/zy-asrs-flow/src/pages/map/utils.js
@@ -14,7 +14,6 @@
export const MapEvent = Object.freeze({
SELECTION_BOX: Symbol.for(0),
- PAN: Symbol.for(1),
})
export const getRealPosition = (x, y, mapContainer) => {
@@ -29,6 +28,7 @@
sprite.anchor.set(0.5);
sprite.cursor = 'pointer';
sprite.eventMode = 'static';
+ sprite.data = {};
}
export const beMovable = (sprite, setDidClickSprite) => {
@@ -64,4 +64,22 @@
}
}
+}
+
+export const isSpriteInSelectionBox = (sprite, selectionBox) => {
+ const spriteBounds = sprite.getBounds();
+ const boxBounds = selectionBox.getBounds();
+
+ return spriteBounds.x + spriteBounds.width > boxBounds.x
+ && spriteBounds.x < boxBounds.x + boxBounds.width
+ && spriteBounds.y + spriteBounds.height > boxBounds.y
+ && spriteBounds.y < boxBounds.y + boxBounds.height;
+}
+
+export const markSprite = (sprite) => {
+ sprite.alpha = 0.5;
+}
+
+export const unMarkSprite = (sprite) => {
+ sprite.alpha = 1;
}
\ No newline at end of file
--
Gitblit v1.9.1