收藏
回答

微信模拟器地图无法正常显示,只有将调试基础库调整为最低版本才可以2.11.0,真机是没有问题的

只有将基础调试库调试到最低版本才能正常显示,但是这个版本太低了,一些方法无法使用

其他版本均无法显示


发布到真机去也是没有问题的

代码如下




import { reactive, getCurrentInstance, ref, onMounted, unref } from 'vue'
const state = reactive({
    latitude: 39.909,
    longitude: 116.39742,
    covers: [{
        id: 1,
        width: '50px',
        height: '50px',
        latitude: 39.909,
        longitude: 116.39742,
        iconPath: '/static/home/1.png'
    }, {
        id: 2,
        width: '50px',
        height: '50px',
        latitude: 39.90,
        longitude: 116.39,
        iconPath: '/static/home/1.png'
    }]
})


const handleTap = (e:any) => {
    console.log(e,'点击了');
    
}






https://developers.weixin.qq.com/s/mpAaJ7m67cPF

最后一次编辑于  02-20
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容