h***@gmail.com
h***@gmail.com
  • 发布:2023-03-17 00:20
  • 更新:2023-03-17 09:18
  • 阅读:435

【报Bug】map 在 h5 页面,点击拿不到经纬度

分类:uni-app

产品分类: uniapp/H5

PC开发环境操作系统: Mac

PC开发环境操作系统版本号: 13.2.1

HBuilderX类型: Alpha

HBuilderX版本号: 3.7.7

浏览器平台: Edge

浏览器版本: 版本 111.0.1661.41 (正式版本) (x86_64)

项目创建方式: HBuilderX

示例代码:
<template>  
    <view>  
        <view class="page-body">  
            <view>  
                <map style="width: 100%; height: 300px;" :latitude="latitude" :longitude="longitude" @tap="taptap">  
                </map>  
            </view>  
        </view>  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                title: 'Hello',  
                latitude: 39.909,  
                longitude: 116.39742  
            }  
        },  
        methods: {  
            taptap(res) {  
                console.log('res: ', res);  
            }  
        }  
    }  

</script>  

<style>  
</style>  

操作步骤:

1.使用上述代码
2.配置地图 key

预期结果:

h5 在 map 上 tab 可以获取地图经纬度

实际结果:

h5拿到不,微信小程序、android、ios 模拟器都能拿到经纬度。

bug描述:

map 使用高德或者腾讯,触发 tab 事件,在 h5 页面都拿不到经纬度
vue 2 和 3 都不行,vue 页面。

2023-03-17 00:20 负责人:无 分享
已邀请:
DCloud_UNI_WZF

DCloud_UNI_WZF

文档 已说明只有 App-nvue、微信小程序2.9支持返回经纬度

要回复问题请先登录注册