派生自 wuyushui/SewerAndRainNetwork

chenyabin
2021-05-13 058b145c23935da9623c41b2985f1f92699d38b6
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