美文网首页
0.缩放地图和移动地图

0.缩放地图和移动地图

作者: xueyueshuai | 来源:发表于2023-06-28 18:18 被阅读0次
      // this.map.getView().setCenter(this.EndCenter)

      this.map.getView().animate({
          center: this.EndCenter,
          // zoom:10,
          duration: 2000
        })
// 地图缩小
zoomOut () {
  const view = this.map.getView()
  const zoom = view.getZoom()
  view.setZoom(zoom - 1)
},
// 地图放大
zoomIn () {
  const view = this.map.getView()
  const zoom = view.getZoom()
  view.setZoom(zoom + 1)
}


// 注意 下面是 动画
  view.animate({
    zoom: zoom,
    duration: duration
  })

相关文章

网友评论

      本文标题:0.缩放地图和移动地图

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