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

fix(map): google H5移动端 maker 点击触发 map 点击问题

上级 9c469e4d
......@@ -116,18 +116,26 @@ export default {
}
}
}
const event = e.event || e.domEvent || e.originEvent
if (this.idString) {
const { latitude, longitude } = this.getMarkerLatitudeLongitude(e)
this.$parent.$trigger('markertap', {}, {
this.$parent.$trigger('markertap', event, {
markerId: Number(this.idString),
latitude,
longitude
})
}
const event = e.event || e.domEvent || e.originEvent
event.stopPropagation()
})
// 处理 google H5移动端 maker 点击触发 map 点击问题
maps.event.addListener(marker, 'mousedown', (e) => {
if (e.domEvent) {
e.domEvent.stopPropagation()
}
})
},
updateMarker (option) {
const map = this._map
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册