leafletMap1.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  1. <template>
  2. <div class="mapCom">
  3. <div id="map"></div>
  4. </div>
  5. </template>
  6. <script>
  7. import httpRequest from "@/tools/request.js";
  8. import {
  9. CanvasLabel
  10. } from "@panzhiyue/leaflet-canvaslabel";
  11. import "./leaflet.canvas-markers.js";
  12. export default {
  13. props: {
  14. ids: {
  15. type: Array,
  16. default: () => {
  17. return [];
  18. },
  19. },
  20. windList: {
  21. type: Array,
  22. default: () => {
  23. return [];
  24. },
  25. },
  26. },
  27. data() {
  28. return {
  29. map: null,
  30. DefaultIcon1: null,
  31. layerGroup: [],
  32. layers: [],
  33. rightObj: {},
  34. areaLayer: null,
  35. tilsUrl: "./static/kMapTiles/{z}/{x}/{y}.jpg",
  36. canvasLabel: null,
  37. markers: null
  38. };
  39. },
  40. watch: {
  41. ids(val) {
  42. this.layers = [];
  43. this.funStationPos(val);
  44. // this.funStationPosLabel(val)
  45. },
  46. },
  47. mounted() {
  48. this.initMap();
  49. },
  50. methods: {
  51. initMap() {
  52. //矢量文本标签渲染器
  53. this.canvasLabel = new L.CanvasLabel({
  54. collisionFlg: true,
  55. scale: 2,
  56. });
  57. this.map = L.map("map", {
  58. renderer: this.canvasLabel,
  59. // center: [40.02404009136253, 116.50641060224784], // 地图中心--北京
  60. // center: [38.44673272215545, 106.27624511718751], // 地图中心--银川
  61. // center: [108.953939, 34.266611], // 地图中心--陕西
  62. // center: [109.470962, 34.520632], // 地图中心--渭南
  63. zoom: 18, //缩放比列
  64. zoomControl: false, //禁用 + - 按钮
  65. doubleClickZoom: true, // 禁用双击放大
  66. attributionControl: false, // 移除右下角leaflet标识
  67. preferCanvas: true,
  68. contextmenu: true,
  69. contextmenuWidth: 140,
  70. // contextmenuItems: [{
  71. // text: "功率曲线拟合分析",
  72. // callback: this.powerLine,
  73. // },
  74. // {
  75. // text: "对风偏差分析",
  76. // callback: this.windAny,
  77. // },
  78. // {
  79. // text: "曲线偏差率分析",
  80. // callback: this.qxAny,
  81. // },
  82. // {
  83. // text: "温度与功率分析",
  84. // callback: this.wdyglAny,
  85. // },
  86. // {
  87. // text: "损失电量分析",
  88. // callback: this.ssdlAny,
  89. // },
  90. // {
  91. // text: "桨距角分析",
  92. // callback: this.jjjAny,
  93. // },
  94. // ],
  95. });
  96. // let name = L.tileLayer(
  97. // "http://webrd01.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x}&y={y}&z={z}",
  98. // ).addTo(this.map)
  99. let name = L.tileLayer(this.tilsUrl, {
  100. minZoom: 10,
  101. maxZoom: 18,
  102. }).addTo(this.map);
  103. // this.setAreaLayer("db", true);
  104. // this.setAreaLayer("jb", true);
  105. this.setAreaLayer("nx", true);
  106. },
  107. async funStationPos(ids) {
  108. let res = null;
  109. let tabStr = ""
  110. // 移除所有 Marker
  111. if (this.markers) {
  112. this.markers.clearLayers();
  113. }
  114. if (ids.length > 0) {
  115. tabStr = "winds"
  116. res = await httpRequest.get("/base/windturbine", {
  117. params: {
  118. wpids: this.ids.join(","),
  119. },
  120. });
  121. } else {
  122. tabStr = "station"
  123. let datas = await httpRequest.get("/benchmarking/wpByCplist?companyids=NX_FGS&type=-1");
  124. res = datas.data
  125. }
  126. if (res.code === 200) {
  127. let resdatas = null
  128. resdatas = tabStr === "station" ? res.data : res.data.data
  129. if (resdatas && resdatas.length) {
  130. // 创建一个 LayerGroup 来管理所有的 Marker
  131. this.markers = L.layerGroup().addTo(this.map);
  132. let iconUrl = require(`@/assets/images/indexCom/fengji.png`);
  133. for (let i = 0; i < resdatas.length; i++) {
  134. let item = resdatas[i];
  135. let latlng = L.latLng(
  136. Number(item.latitude),
  137. Number(item.longitude)
  138. );
  139. let marker = L.marker(latlng, {
  140. // title: item.name,
  141. icon: L.divIcon({
  142. html: `<div class="custom-icon"><img src="${iconUrl}" alt="Icon"/><span style="color:#000;margin-left:10px">${item.aname}</span></div>`,
  143. className: "iconSty",
  144. iconSize: [30, 39],
  145. iconAnchor: [15, 12.5],
  146. }),
  147. // data: item,
  148. })
  149. .bindTooltip(
  150. `
  151. <div class="tip-box-top">
  152. <div class="item">${item.aname}风机</div>
  153. <div class="item">经度:${item.latitude}°</div>
  154. <div class="item">纬度:${item.longitude}°</div>
  155. <div class="item">海拔高度:${item.spare3}m</div>
  156. </div>`
  157. )
  158. .addTo(this.map);
  159. this.layers.push(marker);
  160. // 添加 Marker 到 LayerGroup
  161. this.markers.addLayer(marker);
  162. let that = this;
  163. marker.on("mouseover", function onmouseover(e) {
  164. that.rightObj = item;
  165. });
  166. }
  167. let center = this.map.getCenter();
  168. this.map.panTo([center.lat, center.lng], {
  169. animate: true,
  170. });
  171. this.map.setView(this.layers[0].getLatLng(), 14);
  172. }
  173. }
  174. },
  175. async funStationPosLabel(ids) {
  176. if (this.layers.length > 0) {
  177. for (var i = 0; i < this.layers.length; i++) {
  178. this.map.removeLayer(this.layers[i]);
  179. }
  180. this.layers = [];
  181. }
  182. let res = null;
  183. if (ids.length > 0) {
  184. res = await httpRequest.get("/base/location", {
  185. params: {
  186. ids: this.ids.join(","),
  187. },
  188. });
  189. } else {
  190. res = await httpRequest.get("/base/station", {
  191. params: {},
  192. });
  193. }
  194. if (res.code === 200) {
  195. if (res.data && res.data.length) {
  196. this.layers = [];
  197. for (let i = 0; i < res.data.length; i++) {
  198. let item = res.data[i];
  199. let latlng = L.latLng(
  200. Number(item.latitude),
  201. Number(item.longitude)
  202. );
  203. let c = L.circleMarker(latlng, {
  204. radius: 5,
  205. color: "#12e799",
  206. labelStyle: {
  207. text: item.aname,
  208. scale: 1,
  209. rotation: 0,
  210. offsetY: 15,
  211. fillStyle: "#000",
  212. zIndex: i,
  213. },
  214. data: item,
  215. })
  216. .bindTooltip(
  217. `
  218. <div class="tip-box-top">
  219. <div class="item">${item.aname}</div>
  220. <div class="item">经度:${item.latitude}°</div>
  221. <div class="item">纬度:${item.longitude}°</div>
  222. <div class="item">海拔高度:${item.altitude}m</div>
  223. </div>`
  224. )
  225. .addTo(this.map);
  226. this.layers.push(c);
  227. let that = this;
  228. c.on("mouseover", function onmouseover(e) {
  229. console.log("map", item);
  230. that.rightObj = item;
  231. });
  232. }
  233. let center = this.map.getCenter();
  234. this.map.panTo([center.lat, center.lng], {
  235. animate: true,
  236. });
  237. this.map.setView(this.layers[0].getLatLng(), 13);
  238. }
  239. }
  240. },
  241. setAreaLayer(jsonName, isBounds) {
  242. const wfAllGeoJson = require(`@/assets/${jsonName}.json`);
  243. this.areaLayer = L.geoJSON(wfAllGeoJson, {
  244. style: (feature) => {
  245. return {
  246. fillOpacity: 0.1,
  247. fillColor: "rgb(27, 242, 245)",
  248. weight: 2,
  249. color: "rgb(27, 242, 245)",
  250. };
  251. },
  252. });
  253. this.map.addLayer(this.areaLayer);
  254. if (isBounds) {
  255. this.map.fitBounds(this.areaLayer.getBounds());
  256. }
  257. },
  258. powerLine(e) {
  259. if (!this.rightObj.latitude && !this.rightObj.longitude) {
  260. this.$message({
  261. message: "该坐标系下暂无功率曲线拟合",
  262. type: "error",
  263. });
  264. } else {
  265. this.layers.forEach((item) => {
  266. if (item.options.data) {
  267. if (item.options.data.name.indexOf("风电场") === -1) {
  268. if (
  269. item.options.data.latitude === this.rightObj.latitude &&
  270. item.options.data.longitude === this.rightObj.longitude
  271. ) {
  272. this.$emit("rightClick", {
  273. menuIndex: 0,
  274. current: this.rightObj,
  275. });
  276. }
  277. } else {
  278. if (item.options.data.name === this.rightObj.name) {
  279. this.$message({
  280. message: "风场暂无功率曲线拟合功能",
  281. type: "error",
  282. });
  283. }
  284. }
  285. }
  286. });
  287. }
  288. },
  289. windAny(e) {
  290. if (!this.rightObj.latitude && !this.rightObj.longitude) {
  291. this.$message({
  292. message: "该坐标系下暂无对风偏差分析",
  293. type: "error",
  294. });
  295. } else {
  296. this.layers.forEach((item) => {
  297. if (item.options.data) {
  298. if (item.options.data.name.indexOf("风电场") === -1) {
  299. if (
  300. item.options.data.latitude === this.rightObj.latitude &&
  301. item.options.data.longitude === this.rightObj.longitude
  302. ) {
  303. this.$emit("rightClick", {
  304. menuIndex: 1,
  305. current: this.rightObj,
  306. });
  307. }
  308. } else {
  309. if (item.options.data.name === this.rightObj.name) {
  310. this.$message({
  311. message: "风场暂无对风偏差分析功能",
  312. type: "error",
  313. });
  314. }
  315. }
  316. }
  317. });
  318. }
  319. },
  320. qxAny(e) {
  321. if (!this.rightObj.latitude && !this.rightObj.longitude) {
  322. this.$message({
  323. message: "该坐标系下暂无曲线偏差分析",
  324. type: "error",
  325. });
  326. } else {
  327. this.layers.forEach((item) => {
  328. if (item.options.data) {
  329. if (item.options.data.name.indexOf("风电场") === -1) {
  330. if (
  331. item.options.data.latitude === this.rightObj.latitude &&
  332. item.options.data.longitude === this.rightObj.longitude
  333. ) {
  334. this.$emit("rightClick", {
  335. menuIndex: 2,
  336. current: this.rightObj,
  337. });
  338. }
  339. } else {
  340. if (item.options.data.name === this.rightObj.name) {
  341. this.$message({
  342. message: "风场暂无曲线偏差分析功能",
  343. type: "error",
  344. });
  345. }
  346. }
  347. }
  348. });
  349. }
  350. },
  351. wdyglAny(e) {
  352. if (!this.rightObj.latitude && !this.rightObj.longitude) {
  353. this.$message({
  354. message: "该坐标系下暂无温度与功率分析",
  355. type: "error",
  356. });
  357. } else {
  358. this.layers.forEach((item) => {
  359. if (item.options.data) {
  360. if (item.options.data.name.indexOf("风电场") === -1) {
  361. if (
  362. item.options.data.latitude === this.rightObj.latitude &&
  363. item.options.data.longitude === this.rightObj.longitude
  364. ) {
  365. this.$emit("rightClick", {
  366. menuIndex: 3,
  367. current: this.rightObj,
  368. });
  369. }
  370. } else {
  371. if (item.options.data.name === this.rightObj.name) {
  372. this.$message({
  373. message: "风场暂无温度与功率分析功能",
  374. type: "error",
  375. });
  376. }
  377. }
  378. }
  379. });
  380. }
  381. },
  382. ssdlAny(e) {
  383. if (!this.rightObj.latitude && !this.rightObj.longitude) {
  384. this.$message({
  385. message: "该坐标系下暂无损失电量分析",
  386. type: "error",
  387. });
  388. } else {
  389. this.layers.forEach((item) => {
  390. if (item.options.data) {
  391. if (item.options.data.name.indexOf("风电场") === -1) {
  392. if (
  393. item.options.data.latitude === this.rightObj.latitude &&
  394. item.options.data.longitude === this.rightObj.longitude
  395. ) {
  396. this.$emit("rightClick", {
  397. menuIndex: 4,
  398. current: this.rightObj,
  399. });
  400. }
  401. } else {
  402. if (item.options.data.name === this.rightObj.name) {
  403. this.$message({
  404. message: "风场暂无损失电量分析功能",
  405. type: "error",
  406. });
  407. }
  408. }
  409. }
  410. });
  411. }
  412. },
  413. jjjAny(e) {
  414. if (!this.rightObj.latitude && !this.rightObj.longitude) {
  415. this.$message({
  416. message: "该坐标系下暂无桨距角分析",
  417. type: "error",
  418. });
  419. } else {
  420. this.layers.forEach((item) => {
  421. if (item.options.data) {
  422. if (item.options.data.name.indexOf("风电场") === -1) {
  423. if (
  424. item.options.data.latitude === this.rightObj.latitude &&
  425. item.options.data.longitude === this.rightObj.longitude
  426. ) {
  427. this.$emit("rightClick", {
  428. menuIndex: 5,
  429. current: this.rightObj,
  430. });
  431. }
  432. } else {
  433. if (item.options.data.name === this.rightObj.name) {
  434. this.$message({
  435. message: "风场暂无桨距角分析功能",
  436. type: "error",
  437. });
  438. }
  439. }
  440. }
  441. });
  442. }
  443. },
  444. },
  445. };
  446. </script>
  447. <style scoped lang="less">
  448. .mapCom {
  449. height: 100%;
  450. .iconLabel {
  451. width: 80px !important;
  452. }
  453. .iconSty {
  454. .iconStyClass {
  455. width: 50px;
  456. height: 100px;
  457. position: relative;
  458. top: 40px;
  459. }
  460. }
  461. }
  462. #map {
  463. width: 100%;
  464. height: 100vh;
  465. }
  466. .custom-icon {
  467. display: flex;
  468. align-items: center;
  469. justify-content: center;
  470. background-color: white;
  471. border: 1px solid #ccc;
  472. padding: 5px;
  473. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  474. }
  475. .custom-icon img {
  476. width: 32px;
  477. height: 32px;
  478. margin-right: 5px;
  479. }
  480. .custom-icon span {
  481. font-size: 14px;
  482. }
  483. .lmap-image {
  484. width: 32px;
  485. height: 32px;
  486. }
  487. .lmap-span {
  488. display: inline-block;
  489. margin-left: 5px;
  490. padding: 5px;
  491. font-weight: bold;
  492. line-height: 20px;
  493. font-size: 14px;
  494. color: #fff;
  495. white-space: nowrap;
  496. }
  497. .lmap-text {
  498. display: inline-block;
  499. margin-left: 5px;
  500. padding: 5px;
  501. font-weight: bold;
  502. line-height: 20px;
  503. font-size: 16px;
  504. color: #fff;
  505. width: 500px;
  506. white-space: nowrap;
  507. position: absolute;
  508. text-align: center;
  509. top: 25px;
  510. left: -250px;
  511. }
  512. </style>