|
@@ -109,9 +109,10 @@ const Map: React.FC<MapProps> = ({ type, selFloorId, render, mapList, mapSize })
|
|
console.log('mscale', mscale);
|
|
console.log('mscale', mscale);
|
|
};
|
|
};
|
|
|
|
|
|
- const fixWidth = 1300;
|
|
|
|
|
|
+ //const fixWidth = 1300;
|
|
useEffect(() => {
|
|
useEffect(() => {
|
|
- var scale = Number((fixWidth / mapSize.width).toFixed(4));
|
|
|
|
|
|
+ var mapWrapWidth = (mapRef.current || {}).clientWidth || 0;
|
|
|
|
+ var scale = Number((mapWrapWidth / mapSize.width).toFixed(4));
|
|
setMscale(scale);
|
|
setMscale(scale);
|
|
if (scale < 0.3) {
|
|
if (scale < 0.3) {
|
|
console.log('mscale', mscale);
|
|
console.log('mscale', mscale);
|