Browse Source

地图缩放

zhaojijng 3 years ago
parent
commit
e788e47091

+ 11 - 4
src/assets/css/map.less

@@ -26,12 +26,18 @@
       width: 40px;
       height: 40px;
       margin-bottom: 7px;
-      font-size: 22px;
+      font-size: 25px;
       background: #fff;
       border-radius: 4px;
-      box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 4px 15px rgba(0, 0, 0, 0.05);
+
       cursor: pointer;
     }
+    .zoom:hover {
+      box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.05), 0px 4px 15px rgba(0, 0, 0, 0.05);
+    }
+    .zoom.disable {
+      opacity: 0.4;
+    }
   }
 }
 .map {
@@ -42,7 +48,8 @@
   cursor: pointer;
   .house {
     position: absolute;
-    border: 2px solid #fff;
+    box-sizing: border-box;
+    border: 3px solid #fff;
     border-radius: 6px;
     .noDevice {
       position: absolute;
@@ -53,7 +60,7 @@
       height: 100%;
       padding: 4px;
       white-space: nowrap;
-      background: rgba(255, 255, 255, 0.8);
+      //   background: rgba(255, 255, 255, 0.8);
       .noText {
         padding: 4px 6px;
         background-color: #ccc;

+ 1 - 1
src/components/SearchInput/index.tsx

@@ -107,7 +107,7 @@ const SearchInput: React.FC<SearchInputProps> = ({ mapList }) => {
         //     />
         //   }
       >
-        {matchData.length > 1 &&
+        {matchData.length > 0 &&
           matchData.map(function (item, index) {
             return <Option key={item.id}>{item.localName}</Option>;
           })}

+ 22 - 7
src/components/map/index.tsx

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

+ 3 - 6
src/components/topNavigator/index.tsx

@@ -35,10 +35,9 @@ const TopNavigator: React.FC<topNavigatorProps> = ({
 }) => {
   const { projectId } = useModel('spaceFunc');
   //存储的 搜索到空间的buildingId floorId
-  const { searchBuildId, searchFloorId, changeSearchBuildId, changeSearchFloorId } =
-    useModel('searchInfo');
+  const { searchBuildId, searchFloorId } = useModel('searchInfo');
   const [buildList, setBuildList] = useState<buildItem[]>([]);
-  const [currentBuild, setCurrentBuild] = useState<any>();
+  const [currentBuild, setCurrentBuild] = useState<string>();
 
   const [floorList, setFloorList] = useState<floorItem[]>([]);
   const [currentFloor, setCurrentFloor] = useState<string>();
@@ -48,7 +47,7 @@ const TopNavigator: React.FC<topNavigatorProps> = ({
   useEffect(() => {
     if (searchBuildId && searchFloorId) {
       if (searchBuildId !== currentBuild) {
-        //如果buildId 改变
+        //如果搜索的buildId 改变
         setCurrentBuild(searchBuildId);
       } else {
         //显示
@@ -57,8 +56,6 @@ const TopNavigator: React.FC<topNavigatorProps> = ({
         //这块 其实只想楼层id改变时调用 建筑id 改变时不调用
         changeFloorId && changeFloorId(searchFloorId);
       }
-      changeSearchBuildId(''); //清空搜索记录  以防两次搜索一样的建筑的 没反应
-      changeSearchFloorId(''); //清空搜索记录 以防两次搜索一样的楼层时 没反应 要不要换位置
     }
   }, [searchBuildId, searchFloorId]);
 

+ 2 - 1
src/models/map.ts

@@ -1,9 +1,10 @@
 import React, { useState, useCallback } from 'react';
 import { getMapList } from '@/services/ant-design-pro/environment';
 
+//不用了
 export default function () {
   const [mapList, setMapList] = useState<API.MapInfo[]>([]);
-  //不用了
+
   const getMapListData = useCallback((selFloorId) => {
     if (selFloorId) {
       //debugger;