Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
b0650ad0
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
726
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
b0650ad0
编写于
9月 03, 2022
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(h5 map): 统一map click trigger触发(取消冒泡方式)
上级
2b5e7796
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
4 addition
and
11 deletion
+4
-11
src/platforms/h5/view/components/map/index.vue
src/platforms/h5/view/components/map/index.vue
+4
-11
未找到文件。
src/platforms/h5/view/components/map/index.vue
浏览文件 @
b0650ad0
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
:id=
"id"
:id=
"id"
ref=
"mapContainer"
ref=
"mapContainer"
v-on=
"$listeners"
v-on=
"$listeners"
@
touchend=
"handleAMapClick"
>
>
<map-marker
<map-marker
v-for=
"item in markers"
v-for=
"item in markers"
...
@@ -18,6 +17,7 @@
...
@@ -18,6 +17,7 @@
<div
<div
ref=
"map"
ref=
"map"
style=
"width: 100%; height: 100%; position: relative; overflow: hidden"
style=
"width: 100%; height: 100%; position: relative; overflow: hidden"
@
click.stop
/>
/>
<div
<div
style=
"
style=
"
...
@@ -227,16 +227,6 @@ export default {
...
@@ -227,16 +227,6 @@ export default {
this
.
removeLocation
()
this
.
removeLocation
()
},
},
methods
:
{
methods
:
{
handleAMapClick
(
e
)
{
if
(
IS_AMAP
)
{
// The mobile terminal prevent not map click event trigger map click
if
(
e
.
target
.
nodeName
!==
'
CANVAS
'
)
{
return
}
const
{
pageX
,
pageY
}
=
e
.
changedTouches
[
0
]
this
.
$trigger
(
'
tap
'
,
{
x
:
pageX
,
y
:
pageY
},
{})
}
},
_handleSubscribe
({
_handleSubscribe
({
type
,
type
,
data
=
{}
data
=
{}
...
@@ -409,6 +399,9 @@ export default {
...
@@ -409,6 +399,9 @@ export default {
this
.
isBoundsReady
=
true
this
.
isBoundsReady
=
true
this
.
$emit
(
'
boundsready
'
)
this
.
$emit
(
'
boundsready
'
)
})
})
maps
.
event
.
addListener
(
map
,
'
click
'
,
(
e
)
=>
{
this
.
$trigger
(
'
click
'
,
{},
{})
})
maps
.
event
.
addListener
(
map
,
'
dragstart
'
,
()
=>
{
maps
.
event
.
addListener
(
map
,
'
dragstart
'
,
()
=>
{
this
.
$trigger
(
'
regionchange
'
,
{},
{
this
.
$trigger
(
'
regionchange
'
,
{},
{
type
:
'
begin
'
,
type
:
'
begin
'
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录