高德地图拖拽

loadAMap() {
        if (AMap && !!AMap.Map) {
          this.amap = new AMap.Map("container", {
            resizeEnable: true,
            center: [116.397428, 39.90923],
            zoom: 4
          });
          this.getCenter()
        }
        this.amap.on("dragend",e=>{
          alert(0)
        })

      },

猜你喜欢

转载自blog.csdn.net/qq_40963664/article/details/82784602