美文网首页
6.map的事件

6.map的事件

作者: xueyueshuai | 来源:发表于2023-08-02 10:50 被阅读0次
    this.map.on('click', (ev) => {
        console.log(ev.coordinate)
    })
    
    this.map.on('pointermove', (ev) => {        
        console.log(ev.coordinate)
    })
    
          this.map.on('moveend', e => {
            const view = this.map.getView()
            let zoom = view.getZoom();
            let center = view.getCenter();
            console.log(center)
            console.log(toLonLat(center))
          })
    
    

    相关文章

      网友评论

          本文标题:6.map的事件

          本文链接:https://www.haomeiwen.com/subject/hwtkpdtx.html