北京经济技术开发区经开区虚拟城市项目-【前端】-移动端Web
lixuliang
2024-03-06 7c4546cc6f84adf52a4aaa61244635615041c178
src/utils/map2.js
@@ -2483,5 +2483,22 @@
    })
}
//监听地图双击事件
export function touchClick() {
    let dom = document.getElementById('openlayerContainer');
    dom.addEventListener('touchstart', onTouchStart);
    function onTouchStart(e) {
        let len = e.touches.length;
        if (len === 2) {
            window.mapapi.getView().animate({
                center: window.mapapi.getView().getCenter(),
                zoom: window.mapapi.getView().getZoom() - 1,
                duration: 1000,
            });
        }
    }
}