|
@@ -20,7 +20,8 @@ const Map: React.FC<MapProps> = ({ type, selFloorId, render, mapList, mapSize })
|
|
|
// useEffect(() => {
|
|
|
// getMapListData(selFloorId);
|
|
|
// }, [selFloorId]);
|
|
|
- const { searchText, changeSearchText } = useModel('searchInfo');
|
|
|
+ const { searchText, changeSearchText, changeSearchFloorId, changeSearchBuildId } =
|
|
|
+ useModel('searchInfo');
|
|
|
|
|
|
const [startPageX, setStartPageX] = useState<number>(0);
|
|
|
const [startPageY, setStartPageY] = useState<number>(0);
|
|
@@ -57,23 +58,33 @@ const Map: React.FC<MapProps> = ({ type, selFloorId, render, mapList, mapSize })
|
|
|
setStartPageY(event.pageY);
|
|
|
}
|
|
|
};
|
|
|
+ //最大的缩放比例
|
|
|
+ const maxscale = 1.6;
|
|
|
+ //最小的缩放比例
|
|
|
+ const minscale = 0.3;
|
|
|
const mapZoom = (event: React.MouseEvent) => {
|
|
|
event.stopPropagation();
|
|
|
- if (mscale < 1.6) {
|
|
|
+ if (mscale < maxscale) {
|
|
|
setMscale(mscale + 0.1);
|
|
|
}
|
|
|
};
|
|
|
const mapReduce = (event: React.MouseEvent) => {
|
|
|
event.stopPropagation();
|
|
|
//console.log('mapReduce', mscale);
|
|
|
- if (mscale > 0.3) {
|
|
|
+ if (mscale > minscale) {
|
|
|
setMscale(mscale - 0.1);
|
|
|
}
|
|
|
};
|
|
|
+ const fixWidth = 1300;
|
|
|
+ useEffect(() => {
|
|
|
+ var scale = fixWidth / mapSize.width;
|
|
|
+ setMscale(scale);
|
|
|
+ }, [mapSize]);
|
|
|
|
|
|
- //实现搜索 搜索时 出现结果
|
|
|
+ //当地图发生改变时 的搜索
|
|
|
useEffect(() => {
|
|
|
//searchText使用对象 防止修改了 不再重新定位
|
|
|
+ //根据searchText进行搜索 如果mapList 更改了
|
|
|
debugger;
|
|
|
if (searchText && searchText.text && mapList.length > 0) {
|
|
|
let left: any = 0,
|
|
@@ -87,6 +98,9 @@ const Map: React.FC<MapProps> = ({ type, selFloorId, render, mapList, mapSize })
|
|
|
top = -((filterItem[0] || {}).top || 0);
|
|
|
setTranslateX(left);
|
|
|
setTranslateY(top);
|
|
|
+ //搜索完成
|
|
|
+ changeSearchBuildId(''); //清空搜索记录 以防两次搜索一样的建筑的 没反应
|
|
|
+ changeSearchFloorId(''); //清空搜索记录 以防两次搜索一样的楼层时 没反应 要不要换位置
|
|
|
changeSearchText({});
|
|
|
} else {
|
|
|
setTranslateX(0);
|
|
@@ -94,9 +108,10 @@ const Map: React.FC<MapProps> = ({ type, selFloorId, render, mapList, mapSize })
|
|
|
}
|
|
|
}, [mapList]);
|
|
|
|
|
|
+ //搜索信息改变时的搜索
|
|
|
useEffect(() => {
|
|
|
debugger;
|
|
|
- if (searchText && searchText.text) {
|
|
|
+ if (searchText && searchText.text && mapList.length > 0) {
|
|
|
let left: any = 0,
|
|
|
top: any = 0;
|
|
|
|
|
@@ -151,7 +166,7 @@ const Map: React.FC<MapProps> = ({ type, selFloorId, render, mapList, mapSize })
|
|
|
</div>
|
|
|
<div className={mapstyles.mapControl}>
|
|
|
<div
|
|
|
- className={mapstyles.zoom}
|
|
|
+ className={cx(mapstyles.zoom, { [mapstyles.disable]: mscale >= maxscale })}
|
|
|
onClick={(event) => {
|
|
|
mapZoom(event);
|
|
|
}}
|
|
@@ -159,7 +174,7 @@ const Map: React.FC<MapProps> = ({ type, selFloorId, render, mapList, mapSize })
|
|
|
<Icon className="" type="zoom"></Icon>
|
|
|
</div>
|
|
|
<div
|
|
|
- className={mapstyles.zoom}
|
|
|
+ className={cx(mapstyles.zoom, { [mapstyles.disable]: mscale <= minscale })}
|
|
|
onClick={(event) => {
|
|
|
mapReduce(event);
|
|
|
}}
|