派生自 wuyushui/SewerAndRainNetwork

chenyabin
2021-05-13 6d98f628a46e6ba25af1faafd3a2f64bd7c4e71a
src/components/LayerController/service/AnimalService.js
@@ -33,6 +33,19 @@
      }
    }, 1000)
  }
  /**
   * 设置弹窗平移位置
   * @param pos
   * @param value
   */
  setPanTo = (pos, value) => {
    var position = pos
    position = this.layer.latLngToLayerPoint(position)
    position.y += value
    position = this.layer.layerPointToLatLng(position)
    this.layer.flyTo(position)
  }
}
export default AnimalService