Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
99b37b2f
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
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,发现更多精彩内容 >>
提交
99b37b2f
编写于
1月 06, 2020
作者:
d-u-a
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: v3模式下 vue <map>组件动态修改 longitude,latitude 无效的Bug
上级
30b12350
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
35 deletion
+10
-35
src/platforms/app-plus/view/components/map/index.vue
src/platforms/app-plus/view/components/map/index.vue
+10
-35
未找到文件。
src/platforms/app-plus/view/components/map/index.vue
浏览文件 @
99b37b2f
...
...
@@ -162,12 +162,8 @@ export default {
this
.
map
&&
this
.
map
[
val
?
'
hide
'
:
'
show
'
]()
}
},
listeners
:
{
'
@view-update
'
:
'
_requestUpdate
'
},
mounted
()
{
this
.
_updateStyle
()
let
mapStyle
=
Object
.
assign
({},
this
.
attrs
,
this
.
style
)
let
mapStyle
=
Object
.
assign
({},
this
.
attrs
,
this
.
position
)
if
(
this
.
latitude
&&
this
.
longitude
)
{
mapStyle
.
center
=
new
plus
.
maps
.
Point
(
this
.
longitude
,
this
.
latitude
)
}
...
...
@@ -180,12 +176,18 @@ export default {
map
.
hide
()
}
this
.
$watch
(
'
attrs
'
,
()
=>
{
this
.
map
&&
this
.
map
.
setStyles
(
this
.
attrs
)
if
(
this
.
map
)
{
this
.
map
.
setStyles
(
this
.
attrs
)
// TODO 临时处理更新 longitude, latitude 无效问题
this
.
map
.
setStyles
({
center
:
new
plus
.
maps
.
Point
(
this
.
longitude
,
this
.
latitude
)
})
}
},
{
deep
:
true
})
this
.
$watch
(
'
style
'
,
()
=>
{
this
.
map
&&
this
.
map
.
setStyles
(
this
.
style
)
this
.
$watch
(
'
position
'
,
()
=>
{
this
.
map
&&
this
.
map
.
setStyles
(
this
.
position
)
},
{
deep
:
true
})
...
...
@@ -213,35 +215,8 @@ export default {
this
.
map
&&
this
[
type
](
data
)
},
getRegion
()
{
// TODO
// const region = this.map.getBounds()
},
getScale
()
{
// TODO
// const zoom = this.map.getZoom()
},
_updateStyle
()
{
const
rect
=
this
.
$refs
.
container
.
getBoundingClientRect
()
this
.
hidden
=
false
;
[
'
top
'
,
'
left
'
,
'
width
'
,
'
height
'
].
forEach
(
key
=>
{
let
val
=
rect
[
key
]
val
=
key
===
'
top
'
?
val
+
(
document
.
documentElement
.
scrollTop
||
document
.
body
.
scrollTop
||
0
)
:
val
if
(
!
val
&&
(
key
===
'
width
'
||
key
===
'
height
'
))
{
this
.
hidden
=
true
}
this
.
style
[
key
]
=
val
+
'
px
'
})
},
_requestUpdate
()
{
if
(
this
.
_animationFrame
)
{
cancelAnimationFrame
(
this
.
_animationFrame
)
}
if
(
this
.
video
)
{
this
.
_animationFrame
=
requestAnimationFrame
(()
=>
{
delete
this
.
_animationFrame
this
.
_updateStyle
()
})
}
},
controlclick
(
e
)
{
this
.
$trigger
(
'
controltap
'
,
{},
{
id
:
e
.
id
})
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录