diff --git a/web/client/index.ejs b/web/client/index.ejs index 36e893cd..cc063a05 100644 --- a/web/client/index.ejs +++ b/web/client/index.ejs @@ -9,6 +9,12 @@ type="text/css" href="/assets/font_sc/iconfont.css" /> + +
diff --git a/web/client/index.html b/web/client/index.html index 649f2383..21c20065 100644 --- a/web/client/index.html +++ b/web/client/index.html @@ -10,6 +10,12 @@ href="/assets/font_sc/iconfont.css" /> + + { // dispatch({ type: 'TAB-CHANGE', data: tab }) } + + useEffect(() => { + const map = new AMap.Map("amapId", { + //resizeEnable: true, + center: [115.880421, 28.529637],//地图中心点,初始定位加载显示楼块 + // center: [115.857952, 28.683003],//地图中心点 + zoom: 8,//地图显示的缩放级别 + zooms: [8, 18], + pitch: 65, // 地图俯仰角度,有效范围 0 度- 83 度 + viewMode: '3D', // 地图模式 + // rotation: 60 + // showLabel: false + }); + + + //主题样式 + let styleName = 'amap://styles/fb26776387242721c2fc32e2cb1daccc'; + map.setMapStyle(styleName); + + let mapComplete = false; + let windowOnload = false; + window.onload = function () { + windowOnload = true; + } + return () =>{ + map.destroy(); //销毁地图 + map=null + } + }, []) + + return (