this.markers = [{
id: 1,
latitude: 30.823013,
longitude: 104.156827,
// title: '名称',
// label: '标签标签标签标签标签',
iconPath: '/static/images/tab-im/crim.png',
alpha: 1,
width: 80,
height: 80,
zIndex: 999,
callout: {
content: '气泡标题',
color: '#333333',
fontSize: 10,
borderRadius: 50,
bgColor: 'rgba(255,255,255,0.8)',
padding: 5,
display: 'BYCLICK',
textAlign: 'center'
}
}];
setTimeout(() => {
this.$toast('marker moving...');
const map = uni.createMapContext('map', vm);
map.translateMarker({
markerId: 1,
destination: { latitude: 30.803013, longitude:104.136827 }
});
}, 5000);
- 发布:2020-09-07 18:22
- 更新:2020-09-24 15:00
- 阅读:775
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 2.8.8
手机系统: Android
手机系统版本号: Android 10
手机厂商: 华为
手机机型: p40
页面类型: vue
打包方式: 云端
项目创建方式: HBuilderX
操作步骤:
预期结果:
callout跟随移动
callout跟随移动
实际结果:
callout未跟随移动
callout未跟随移动
bug描述:
nvue 页面 map 组件,移动Marker后气泡callout无法跟随移动,还在marker移动前的位置。
2***@qq.com
你好,nvue页面的map组件,移动Marker后气泡callout可以跟随移动,但是加上rotate角度后,气泡就停留在最开始的位置,不跟随移动,手机系统为小米9,HBuildX版本为3.0.5
2021-01-18 16:02