提交 c35bac76 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

fix(h5 map): 修复谷歌地图移动端callouttap触发map click

上级 b0650ad0
......@@ -301,6 +301,11 @@ export default {
$event.stopPropagation()
$event.preventDefault()
}
// The mobile terminal prevent google map callout click trigger map click
if (getMapInfo().type === MapType.GOOGLE) {
callout.div.onpointerdown = (e) => { e.stopPropagation() }
callout.div.ontouchstart = (e) => { e.stopPropagation() }
}
}
}
} else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册