Vue 引入百度地图,在调试工具中可看到代码,但是在页面上,显示空白..

<baidu-map id="installMap" ref="installMap" :city='city' @ready='getLocation' :center="center"></baidu-map>
methods: {
    getLocation () {
        let position = new BMap.Geolocation()
        position.getCurrentPosition(pos => {
            this.center = pos.point
            this.city = pos.address.city
            this.initMap(pos)
        })
    },
    initMap(pos) {
        let map = new BMap.Map('installMap')
        let point = new BMap.Point(pos.point.lng, pos.point.lat)
        map.centerAndZoom(point, 10)
        map.setCurrentCity(pos.address.city)
    }
}

或者

<div id="installMap" ref="installMap"></div>
mounted () {
    this.getLocation()
},
methods: {
    getLocation () {
        let position = new BMap.Geolocation()
        position.getCurrentPosition(pos => {
            this.center = pos.point
            this.city = pos.address.city
            this.initMap(pos)
        })
    },
    initMap(pos) {
        let map = new BMap.Map('installMap')
        let point = new BMap.Point(pos.point.lng, pos.point.lat)
        map.centerAndZoom(point, 10)
        map.setCurrentCity(pos.address.city)
    }
}

pos信息

clipboard.png

审查元素里

clipboard.png

页面上:

clipboard.png

请问我代码是否写的有问题~~或者怎么改才能不空白呢..

阅读 4.1k
2 个回答

找了一个小时,发现犯了一个非常愚蠢的错误!
我描述的问题,是可以初始化地图的

我定义的div是id,可是css中写的是class
因为高度的问题,所以没有加载出来!

大赞大赞大赞

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题