From 9339cb413975fd89db9bcbb3470d62cb7d211c14 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期二, 08 十月 2024 14:59:46 +0800 Subject: [PATCH] # --- zy-acs-flow/src/map/MapPage.jsx | 23 ++++++++++++----------- 1 files changed, 12 insertions(+), 11 deletions(-) diff --git a/zy-acs-flow/src/map/MapPage.jsx b/zy-acs-flow/src/map/MapPage.jsx index 3fd2412..031d5b1 100644 --- a/zy-acs-flow/src/map/MapPage.jsx +++ b/zy-acs-flow/src/map/MapPage.jsx @@ -29,11 +29,6 @@ const [mode, setMode] = useState('monitoring'); - const [windowSize, setWindowSize] = React.useState({ - width: window.innerWidth, - height: window.innerHeight, - }); - const theme = useTheme(); const themeMode = theme.palette.mode; @@ -52,14 +47,14 @@ } initialize(); - // windows resize + // resize const handleResize = () => { - setWindowSize({ - width: window.innerWidth, - height: window.innerHeight, - }); - player.resize(); + const width = contentRef.current.offsetWidth; + const height = contentRef.current.offsetHeight; + + player.resize(width, height); }; + handleResize(); window.addEventListener('resize', handleResize); return () => { @@ -72,6 +67,7 @@ } }; }, [themeMode]) + const handleModeChange = (event) => { setMode(event.target.value); @@ -151,12 +147,17 @@ <Box ref={contentRef} sx={{ + position: 'relative', width: '100%', height: '100%', backgroundColor: '#e0e0e0', + overflowY: 'hidden', }} > <div ref={mapRef} style={{ + position: 'absolute', + top: 0, + left: 0, width: '100%', height: '100%', }} /> -- Gitblit v1.9.1