From 300e019d85ab8d8a671a6b7773997e40fff56d58 Mon Sep 17 00:00:00 2001
From: chenzeping <ChenZeping02609@163.com>
Date: 星期三, 31 三月 2021 16:21:24 +0800
Subject: [PATCH] Merge branch 'develop' of http://xearth.cn:6600/r/wuyushui/SewerAndRainNetwork into develop

---
 src/components/LayerController/logic/WasteWater.js |   63 +++++++++++++++++++++++++++++++
 1 files changed, 63 insertions(+), 0 deletions(-)

diff --git a/src/components/LayerController/logic/WasteWater.js b/src/components/LayerController/logic/WasteWater.js
new file mode 100644
index 0000000..a5ca19f
--- /dev/null
+++ b/src/components/LayerController/logic/WasteWater.js
@@ -0,0 +1,63 @@
+/**
+ * 搴熸按
+ */
+const AnimalService = require('../service/AnimalService').default
+const mapApi = require('../../../api/mapApi').default
+
+const testValue1 = '/assets/images/map/wastewater/fs_green.png'
+const testValue2 = '/assets/images/map/wastewater/fs_yellow.png'
+
+module.exports = function () {
+  /**
+   * 杩斿洖marker瀵硅薄鏁扮粍
+   * @param L leaflet瀵硅薄
+   */
+  this.init = async (layer, L) => {
+    this.animalService = new AnimalService({
+      L: L,
+      layer: layer
+    })
+    const res = await mapApi.getWasteWater()
+    console.log(res)
+    const data = res.Result.DataInfo
+    console.log(data)
+    for (let i = 0; i < data.length; i++) {
+      // 缁忕含搴� 浣嶇疆
+      const positionX = data[i].Latitude
+      const positionY = data[i].Longitude
+
+      // 瀹氫箟绫诲瀷 鐢ㄦ潵鍖哄垎鏁版嵁鐨勪笉鍚�
+      const testValue = data[i].ContrLevel
+      const iconUrl = this.differentTypes(testValue)
+      const marker = L.marker.magic([positionX, positionY], {
+        icon: L.icon({
+          iconUrl: iconUrl,
+          iconSize: [50, 50],
+          iconAnchor: [25, 25]
+        })
+      })
+      layer.addLayer(marker)
+    }
+  }
+
+  this.bindTooltip = (layer) => {
+    return '娴嬭瘯搴熸按'
+  }
+
+  this.clickListener = (e) => {
+    // console.log(e)
+    this.animalService.pulseEffect(e.latlng)
+    return this.PublicBounced.$el
+  }
+
+  // 鏍规嵁杩斿洖鍊肩殑涓嶅悓鏍囪涓嶅悓鍥剧墖
+  this.differentTypes = (testValue) => {
+    let testChange
+    if (testValue === 1) {
+      testChange = testValue1
+    } else {
+      testChange = testValue2
+    }
+    return testChange
+  }
+}

--
Gitblit v1.8.0