amapPow.vue 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. <!--
  2. * @Description:
  3. * @Author: wangcc
  4. * @Date: 2022-10-19 09:32:46
  5. * @LastEditors: wangcc
  6. * @LastEditTime: 2022-11-04 14:28:08
  7. * @FilePath: \castgroup_bigscreen\src\components\amapPow.vue
  8. * @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
  9. -->
  10. <template>
  11. <div class="map-wrap">
  12. <div id="container" tabindex="0"></div>
  13. <div id="mask"></div>
  14. <div class="yun-wrap">
  15. <img class="yun yun1" src="../assets/img/云1.png" alt />
  16. </div>
  17. <div class="yun-wrap">
  18. <img class="yun yun2" src="../assets/img/云2.png" alt />
  19. </div>
  20. <div class="yun-wrap">
  21. <img class="yun yun3" src="../assets/img/云3.png" alt />
  22. </div>
  23. <el-dialog title="查看图片" :modal="false" :visible.sync="imgDialogVisible" width="40%">
  24. <img width="100%" style="height:580px" :src="dialogImageUrl" alt />
  25. </el-dialog>
  26. </div>
  27. </template>
  28. <script>
  29. import AMapLoader from '@amap/amap-jsapi-loader';
  30. import { mapMutations, mapState, mapGetters } from 'vuex';
  31. import {
  32. smallClassMap,
  33. smallClassMapFile,
  34. rightScrollData,
  35. forestSample,
  36. alarmDataApi,
  37. financeBasePlant,
  38. financeBaseDetail,
  39. farmInfo,
  40. smallClassDetail,
  41. treePlant,
  42. projectList,
  43. getProjectIcon
  44. } from '@/service/index.js';
  45. import axios from 'axios';
  46. export default {
  47. name: 'Mapview',
  48. data() {
  49. return {
  50. imgDialogVisible: false,
  51. dialogImageUrl: null,
  52. AMap: null,
  53. map: null,
  54. lngLat: [106.628201, 26.646694],
  55. adName: '贵州省',
  56. mapLevel: 'province',
  57. adcode: '贵州省',
  58. parentId: '520000',
  59. province: '',
  60. zoom: 8,
  61. districtExplorer: null,
  62. tipMarker: null,
  63. $tipMarkerContent: null,
  64. currentAreaNode: null,
  65. cityMarkerArr: [],
  66. eventMarker: null,
  67. baseMarker: null,
  68. streetMarkerArr: [],
  69. leftPage: 'forest',
  70. putPolygonData: [],
  71. //乡镇边界
  72. townPolygons: [],
  73. // 基地详情
  74. baseMarkers: [],
  75. // 小班详情
  76. smallMarkers: [],
  77. // 时间详情
  78. eventMarkers: [],
  79. // 林场
  80. treesMarkerArr: [],
  81. // 小班边界
  82. smallClassMapArr: [],
  83. // 作物
  84. economicsArr: [],
  85. // 基地定位
  86. baseMarkerArr: [],
  87. // 时间信息
  88. eventMarkersArr: [],
  89. // 样地、小班
  90. forestMarkerArr: [],
  91. // 样地号
  92. smallClassNArr: [],
  93. // 森林资源小班边界
  94. smallClassPolygonArr: [],
  95. // 林木结构小班边界
  96. treesPolygonArr: [],
  97. // 项目列表
  98. projectMarkerArr: [],
  99. treeCompMarkers: [],
  100. townPolygonArr: [],
  101. economicsArr: [],
  102. selectData: {},
  103. districtData: {},
  104. streetData: {},
  105. // 项目小班数
  106. projectSmallClassArr: [],
  107. // 项目小班边界
  108. smallClassProject: [],
  109. // 项目小班红点转边界图
  110. projectPolygonArr: [],
  111. projectIcon:
  112. 'http://miniores.hw.hongweisoft.com/mintou/1667460231789_a06fed1519c5e3d206e4ab9148d658e5.png'
  113. // projectIcon: ''
  114. };
  115. },
  116. watch: {
  117. '$store.state.addr.parentId': {
  118. handler(val) {
  119. // 加载小班边界
  120. // this.getSmallClass();
  121. this.parentId = val;
  122. if (this.projectSmallClassArr) {
  123. this.map.remove(this.projectSmallClassArr);
  124. }
  125. if (this.$store.state.addr.mapLevel == 'street') {
  126. this.parentId = val.substring(0, 6);
  127. if (this.map) {
  128. this.switch2AreaNode(
  129. this.parentId,
  130. this.$store.state.addr.mapLevel,
  131. this.$store.state.addr.selectCity,
  132. this.leftPage
  133. );
  134. }
  135. }
  136. if (this.$store.state.addr.mapLevel != 'street') {
  137. this.selectData = this.$store.state.addr.selectCity;
  138. this.districtData = this.$store.state.addr.selectDistrict;
  139. this.streetData = this.$store.state.addr.selectStreet;
  140. if (this.map) {
  141. this.switch2AreaNode(
  142. this.parentId,
  143. this.$store.state.addr.mapLevel,
  144. this.$store.state.addr.selectCity,
  145. this.leftPage
  146. );
  147. }
  148. if (this.townPolygons) {
  149. this.map.remove(this.townPolygons);
  150. }
  151. if (this.townPolygonArr) {
  152. this.map.remove(this.townPolygonArr);
  153. }
  154. if (
  155. this.polygon ||
  156. this.streetMarkerArr ||
  157. this.townPolygons ||
  158. this.forestMarkerArr ||
  159. this.smallClassNArr ||
  160. this.forestMarkerArr ||
  161. this.townPolygonArr ||
  162. this.smallClassPolygonArr
  163. ) {
  164. this.map.remove(this.polygon);
  165. this.map.remove(this.streetMarkerArr);
  166. this.map.remove(this.townPolygons);
  167. this.map.remove(this.forestMarkerArr);
  168. this.map.remove(this.smallClassNArr);
  169. this.map.remove(this.forestMarkerArr);
  170. this.map.remove(this.townPolygonArr);
  171. this.map.remove(this.smallClassPolygonArr);
  172. }
  173. }
  174. }
  175. },
  176. '$store.state.addr.selectStreet'(val) {
  177. if (val.label && val.value && val.areaId) {
  178. this.map.remove(this.polygon);
  179. let labelTown = val.label;
  180. this.map.setCity(labelTown);
  181. }
  182. },
  183. '$store.state.addr.page': {
  184. handler(val) {
  185. this.leftPage = val;
  186. if (!this.parentId) {
  187. this.parentId = '520000';
  188. this.$store.state.addr.parentName = '贵州省';
  189. }
  190. if (this.parentId) {
  191. if (this.$store.state.addr.mapLevel == 'street') {
  192. // this.getSmallClass(val);
  193. }
  194. }
  195. this.mapPolygon();
  196. if (val == 'forest' || val == 'treeSpecies') {
  197. this.getProjectList();
  198. } else {
  199. this.map.remove(this.projectSmallClassArr);
  200. }
  201. if (val != 'forest') {
  202. this.map.remove(this.forestMarkerArr);
  203. this.map.remove(this.smallClassNArr);
  204. this.map.remove(this.smallClassPolygonArr);
  205. this.map.remove(this.projectMarkerArr);
  206. if (this.projectPolygonArr) {
  207. this.map.remove(this.projectPolygonArr);
  208. }
  209. if (this.smallMarkers) {
  210. this.map.remove(this.smallMarkers);
  211. }
  212. }
  213. if (val != 'treeSpecies') {
  214. this.map.remove(this.forestMarkerArr);
  215. this.map.remove(this.treesPolygonArr);
  216. this.map.remove(this.projectMarkerArr);
  217. if (this.treeCompMarkers) {
  218. this.map.remove(this.treeCompMarkers);
  219. }
  220. if (this.treesPolygonArr) {
  221. this.map.remove(this.treesPolygonArr);
  222. }
  223. }
  224. if (val != 'economics') {
  225. this.map.remove(this.economicsArr);
  226. this.map.remove(this.baseMarkerArr);
  227. }
  228. if (val != 'event') {
  229. this.map.remove(this.eventMarkersArr);
  230. }
  231. }
  232. },
  233. '$store.state.addr.mapLevel': {
  234. handler(val) {
  235. if (val === 'street') {
  236. // this.getSmallClass();
  237. }
  238. }
  239. },
  240. '$store.state.addr.smallClassSearch': {
  241. deep: true,
  242. immediate: true,
  243. handler: function (val, oldVal) {
  244. let _this = this;
  245. if (val) {
  246. if (val.longitude && val.latitude && !val.name) {
  247. this.map.remove(this.polygon);
  248. if (_this.smallMarkers) {
  249. _this.map.remove(_this.smallMarkers);
  250. }
  251. if (this.smallClassProject) {
  252. this.map.remove(this.smallClassProject);
  253. }
  254. this.setMapLabel(val);
  255. if (
  256. this.$store.state.addr.mapLevel == 'city' ||
  257. this.$store.state.addr.mapLevel == 'province'
  258. ) {
  259. if (val.countyCode) {
  260. // this.switch2AreaNode(val.countyCode.substring(0, 6));
  261. let selectCity = '';
  262. switch (val.cityName) {
  263. case '黔西南州':
  264. selectCity = '黔西南布依族苗族自治州';
  265. break;
  266. case '黔东南州':
  267. selectCity = '黔东南苗族侗族自治州';
  268. break;
  269. case '黔南州':
  270. selectCity = '黔南布依族苗族自治州';
  271. break;
  272. }
  273. this.$store.dispatch('searchArea', {
  274. parentId: val.cityCode.substring(0, 6),
  275. name: selectCity,
  276. mapLevel: 'city'
  277. });
  278. if (val.cityCode) {
  279. this.changeSelectCity({
  280. value: val.cityCode,
  281. label: selectCity,
  282. areaId: val.cityId,
  283. prop: '2'
  284. });
  285. }
  286. if (val.countyCode) {
  287. this.changeSelectDistrict({
  288. value: val.countyCode,
  289. label: val.countyName,
  290. areaId: val.countyId,
  291. prop: '2'
  292. });
  293. }
  294. }
  295. } else {
  296. this.switch2AreaNode(val.countyCode.substring(0, 6));
  297. }
  298. }
  299. if (val.mapInfo) {
  300. let polyData = JSON.parse(val.mapInfo);
  301. let smallClassPolygon = new AMap.Polygon({
  302. map: _this.map,
  303. path: polyData.features[0].geometry.coordinates,
  304. strokeOpacity: 1,
  305. fillOpacity: 0.5,
  306. strokeColor: 'red',
  307. strokeWeight: 2,
  308. zIndex: 999,
  309. cursor: 'pointer',
  310. fillColor: 'red'
  311. });
  312. this.smallClassProject.push(smallClassPolygon);
  313. }
  314. }
  315. }
  316. },
  317. '$store.state.addr.eventData': {
  318. deep: true,
  319. immediate: true,
  320. handler: function (val, oldVal) {
  321. let _this = this;
  322. if (val) {
  323. if (val.longitude && val.latitude && !val.name) {
  324. let lanLatArr = [val.longitude, val.latitude];
  325. let baseIcon = '';
  326. let fireIcon = require('@/assets/img/fire.png');
  327. let cutTreeIcon = require('@/assets/img/cutTree.png');
  328. let insectpestIcon = require('@/assets/img/insectpest.png');
  329. let stealIcon = require('@/assets/img/steal.png');
  330. if (val.eventType == 1) {
  331. val.eventContLabel = '火灾';
  332. baseIcon = fireIcon;
  333. } else if (val.eventType == 2) {
  334. val.eventContLabel = '砍伐';
  335. baseIcon = cutTreeIcon;
  336. } else if (val.eventType == 3) {
  337. val.eventContLabel = '病虫害';
  338. baseIcon = insectpestIcon;
  339. } else if (val.eventType == 4) {
  340. val.eventContLabel = '偷盗林木';
  341. baseIcon = stealIcon;
  342. }
  343. let treeSmallLabel =
  344. "<div class='info-small'>" +
  345. "<h5 class='marker-title'>历史事件" +
  346. '</h5>' +
  347. "<div class='marker-content'>" +
  348. '<p>事件类型:' +
  349. val.eventContLabel +
  350. '</p>' +
  351. '<p>上报时间:' +
  352. val.createTime +
  353. '</p>' +
  354. '<p>上报人:' +
  355. val.createBy +
  356. '</p>' +
  357. '<p>位置:' +
  358. val.cityName +
  359. val.countyName +
  360. val.townName +
  361. val.villageName +
  362. '</p>' +
  363. '</div>' +
  364. '</div>';
  365. this.eventMarker = new AMap.Marker({
  366. map: this.map,
  367. position: lanLatArr,
  368. icon: baseIcon,
  369. anchor: 'bottom-center',
  370. offset: new AMap.Pixel(0, 0),
  371. zIndex: 9999
  372. });
  373. this.eventMarker.setLabel({
  374. direction: 'top',
  375. offset: new AMap.Pixel(-10, 0), //设置文本标注偏移量
  376. content: treeSmallLabel //设置文本标注内容
  377. });
  378. this.eventMarkers.push(this.eventMarker);
  379. // this.map.add(this.eventMarker);
  380. } else if (val.name == false && this.eventMarker) {
  381. this.map.on('rightclick', function (e) {
  382. _this.map.remove(_this.eventMarkers);
  383. });
  384. }
  385. }
  386. }
  387. },
  388. '$store.state.addr.baseDetail': {
  389. deep: true,
  390. immediate: true,
  391. handler: function (val, oldVal) {
  392. let _this = this;
  393. if (val) {
  394. if (val.baseLongitude && val.baseLatitude && !val.name) {
  395. let lanLatArr = [val.baseLongitude, val.baseLatitude];
  396. let treeSmallLabel =
  397. "<div class='info-small'>" +
  398. "<h5 class='marker-title'>" +
  399. val.baseName +
  400. '</h5>' +
  401. "<div class='marker-content'>" +
  402. '<p>基地名称:' +
  403. val.baseName +
  404. '</p>' +
  405. '<p>种植/养殖/加工作物:' +
  406. val.cropName +
  407. '</p>' +
  408. '<p>占地面积:' +
  409. val.baseArea +
  410. '亩' +
  411. '</p>' +
  412. '<p>位置:' +
  413. val.cityName +
  414. val.countyName +
  415. val.townName +
  416. '</p>' +
  417. '</div>' +
  418. '</div>';
  419. this.baseMarker = new AMap.Marker({
  420. map: this.map,
  421. position: lanLatArr,
  422. icon: require('@/assets/img/small-marker.png'),
  423. anchor: 'bottom-center',
  424. offset: new AMap.Pixel(0, 0),
  425. zIndex: 9999
  426. });
  427. this.baseMarker.setLabel({
  428. direction: 'top',
  429. offset: new AMap.Pixel(0, 0), //设置文本标注偏移量
  430. content: treeSmallLabel //设置文本标注内容
  431. });
  432. this.baseMarkers.push(_this.baseMarker);
  433. } else if (val.name == false && _this.baseMarker) {
  434. this.map.on('rightclick', function (e) {
  435. _this.map.remove(_this.baseMarkers);
  436. });
  437. }
  438. }
  439. }
  440. },
  441. '$store.state.addr.smallClassMap': {
  442. handler(val) {
  443. if (val) {
  444. let _this = this;
  445. if (this.projectSmallClassArr) {
  446. this.map.remove(this.projectSmallClassArr);
  447. }
  448. let capitals = { animations: 'scaless' };
  449. val.forEach((element) => {
  450. let lnglat = new AMap.LngLat(element.longitude, element.latitude);
  451. var projectSmallClass = new AMap.Text({
  452. map: this.map,
  453. text: ' ',
  454. textAlign: 'center',
  455. verticalAlign: 'middle', //middle 、bottom
  456. draggable: false,
  457. cursor: 'pointer',
  458. angle: 2,
  459. style: {
  460. width: '2px',
  461. height: '2px',
  462. 'border-radius': '50%',
  463. 'border-width': 0,
  464. 'text-align': 'center',
  465. 'font-size': '12px',
  466. color: 'blue',
  467. 'background-color': 'red',
  468. // '-moz-box-shadow': '0px 0px 20px 2px '+capitals[i].color,
  469. // 'box-shadow': '0px 0px 20px 2px '+capitals[i].color,
  470. animation:
  471. capitals.animations +
  472. '1s infinite cubic-bezier(0, 0, 0.49, 1.02)'
  473. // 'animation': 'myfirst 1s infinite'
  474. },
  475. position: lnglat
  476. });
  477. this.projectSmallClassArr.push(projectSmallClass);
  478. projectSmallClass.on('click', (e) => {
  479. if (_this.projectPolygonArr) {
  480. _this.map.remove(_this.projectPolygonArr);
  481. }
  482. if (_this.smallMarkers) {
  483. _this.map.remove(_this.smallMarkers);
  484. }
  485. if (_this.treeCompMarkers) {
  486. _this.map.remove(_this.treeCompMarkers);
  487. }
  488. if (_this.treesPolygonArr) {
  489. _this.map.remove(_this.treesPolygonArr);
  490. }
  491. if (_this.smallClassProject) {
  492. _this.map.remove(_this.smallClassProject);
  493. }
  494. // _this.map.remove(projectSmallClass);
  495. smallClassDetail({ id: element.id }).then((res) => {
  496. if (res.code == 200) {
  497. let detail = res.data;
  498. if (this.leftPage == 'forest') {
  499. if (detail.mapInfo) {
  500. let polyData = JSON.parse(detail.mapInfo);
  501. let projectPolygon = new AMap.Polygon({
  502. map: _this.map,
  503. path: polyData.features[0].geometry.coordinates,
  504. strokeOpacity: 1,
  505. fillOpacity: 0.5,
  506. strokeColor: 'red',
  507. strokeWeight: 2,
  508. zIndex: 999,
  509. cursor: 'pointer',
  510. fillColor: 'red'
  511. });
  512. this.projectPolygonArr.push(projectPolygon);
  513. }
  514. this.map.on('rightclick', (e) => {
  515. if (_this.projectPolygonArr) {
  516. _this.map.remove(_this.projectPolygonArr);
  517. }
  518. if (_this.smallMarkers) {
  519. _this.map.remove(_this.smallMarkers);
  520. }
  521. });
  522. _this.setMapLabel(detail);
  523. } else if (this.leftPage == 'treeSpecies') {
  524. this.addTreeSpeciesPolygon(detail);
  525. }
  526. }
  527. });
  528. });
  529. });
  530. }
  531. }
  532. }
  533. },
  534. computed: {
  535. ...mapGetters(['vuexCityList', 'vuexDistrictList', 'vuexStreetList']),
  536. ...mapState(['selectCity', 'selectDistrict', 'selectStreet'])
  537. },
  538. created() {
  539. this.getTreePlant();
  540. // this.getIcon();
  541. },
  542. mounted() {
  543. this.initAMap();
  544. // 加载小班边界
  545. // this.getSmallClass();
  546. },
  547. methods: {
  548. ...mapMutations([
  549. 'changeSelectCity',
  550. 'changeSelectDistrict',
  551. 'changeSelectStreet',
  552. 'changeSelectAddr'
  553. ]),
  554. getIcon() {
  555. getProjectIcon('project_icon').then((res) => {
  556. if (res.code == 200) {
  557. this.projectIcon = res.data[0].dictValue;
  558. }
  559. });
  560. },
  561. setMapLabel(val) {
  562. let _this = this;
  563. let lanLatArr = [val.longitude, val.latitude];
  564. let imgList = [];
  565. if (val.imageList.length > 0) {
  566. val.imageList.forEach((element) => {
  567. imgList.push(`<img id="markerLabel" src="${element.image}"/>`);
  568. });
  569. } else {
  570. imgList.push('暂无图片');
  571. }
  572. this.imgClick();
  573. let smallLabel =
  574. "<div class='info-details'>" +
  575. "<h5 class='marker-title'>" +
  576. val.countyName +
  577. '-' +
  578. val.smallNumber +
  579. '</h5>' +
  580. "<div class='marker-content'>" +
  581. '<div>' +
  582. '<p>小班号:' +
  583. val.smallNumber +
  584. '</p>' +
  585. '<p>样地数:' +
  586. val.sampleCount +
  587. '</p>' +
  588. '<p>小班蓄积量:' +
  589. val.smallClassStock +
  590. '(立方米)' +
  591. '</p>' +
  592. '<p>小班占地面积:' +
  593. val.landArea +
  594. '(亩)' +
  595. '</p>' +
  596. '<p>小班树种组成:' +
  597. val.treeComp +
  598. '</p>' +
  599. '<p>地类:' +
  600. val.landType +
  601. '</p>' +
  602. '<p>林地权属:' +
  603. val.landOwner +
  604. '</p>' +
  605. '<p>林木权属:' +
  606. val.forestOwner +
  607. '</p>' +
  608. '<p>林种:' +
  609. val.forestClass +
  610. '</p>' +
  611. '<p>树种结构:' +
  612. val.treeStruct +
  613. '</p>' +
  614. '</div>' +
  615. '<div>' +
  616. '<p>起源:' +
  617. val.origin +
  618. '</p>' +
  619. '<p>优势树种:' +
  620. val.superTree +
  621. '</p>' +
  622. '<p>主要灌木名称:' +
  623. val.shrubName +
  624. '</p>' +
  625. '<p>地貌:' +
  626. val.landForm +
  627. '</p>' +
  628. '<p>海拔:' +
  629. val.altitude +
  630. '</p>' +
  631. '<p>坡位:' +
  632. val.slopePosit +
  633. '</p>' +
  634. '<p>坡向:' +
  635. val.slopeDirect +
  636. '</p>' +
  637. '<p>坡形:' +
  638. val.slopeForm +
  639. '</p>' +
  640. '<p>坡度:' +
  641. val.slope +
  642. '</p>' +
  643. '<p>森林健康度:' +
  644. val.forestHealth +
  645. '</p>' +
  646. '</div>' +
  647. '</div>' +
  648. '<div class="imgList">' +
  649. "<span class='marker-span'>图片:</span>" +
  650. '<div class="marker-imgs">' +
  651. imgList +
  652. '</div>' +
  653. '</div>' +
  654. '</div>';
  655. this.smallMarker = new AMap.Marker({
  656. map: this.map,
  657. position: lanLatArr,
  658. icon: require('@/assets/img/small-marker.png'),
  659. anchor: 'bottom-center',
  660. offset: new AMap.Pixel(0, 0),
  661. zIndex: 9999
  662. });
  663. this.smallMarker.setLabel({
  664. direction: 'right',
  665. offset: new AMap.Pixel(-230, -160), //设置文本标注偏移量
  666. content: smallLabel //设置文本标注内容
  667. });
  668. if (
  669. this.$store.state.addr.mapLevel == 'street' ||
  670. this.$store.state.addr.mapLevel == 'district'
  671. ) {
  672. this.map.setFitView(this.smallMarker, false, false, 14);
  673. }
  674. this.smallMarkers.push(_this.smallMarker);
  675. this.smallMarker.on('click', (e) => {
  676. if (_this.smallMarkers) {
  677. _this.map.remove(_this.smallMarkers);
  678. }
  679. if (_this.projectPolygonArr) {
  680. _this.map.remove(_this.projectPolygonArr);
  681. }
  682. if (_this.smallClassProject) {
  683. _this.map.remove(_this.smallClassProject);
  684. }
  685. // _this.smallMarker.setLabel({
  686. // direction: 'right',
  687. // offset: new AMap.Pixel(-230, -160), //设置文本标注偏移量
  688. // content: smallLabel //设置文本标注内容
  689. // });
  690. });
  691. },
  692. initAMap() {
  693. window._AMapSecurityConfig = {
  694. securityJsCode: 'e6666dfe93e7d3c6f3a5dc35cad6befb' // 密钥
  695. };
  696. let _this = this;
  697. AMapLoader.load({
  698. key: 'f79d862df9288710e3dce6591af9dff1', //设置您的key
  699. version: '2.0',
  700. plugins: [
  701. 'AMap.ToolBar',
  702. 'AMap.Driving',
  703. 'AMap.DistrictSearch',
  704. 'AMap.MapboxVectorTileLayer'
  705. ],
  706. Loca: {
  707. version: '2.0'
  708. },
  709. AMapUI: {
  710. version: '1.1',
  711. plugins: ['overlay/SimpleMarker']
  712. },
  713. features: ['road', 'bg', 'building']
  714. }).then((AMap) => {
  715. _this.AMap = AMap;
  716. _this.map = new AMap.Map('container', {
  717. viewMode: '3D',
  718. zoom: _this.zoom,
  719. center: _this.lngLat,
  720. pitch: 45,
  721. terrain: true,
  722. features: ['road', 'bg', 'building'],
  723. layers: [new AMap.TileLayer.Satellite()]
  724. });
  725. AMapUI.load(
  726. ['ui/geo/DistrictExplorer', 'ui/geo/DistrictCluster', 'lib/$'],
  727. function (DistrictExplorer, DistrictCluster, $) {
  728. window.DistrictCluster = DistrictCluster;
  729. _this.loadMapData(DistrictExplorer, $);
  730. }
  731. );
  732. _this.map.on('rightclick', function (e) {
  733. if (_this.smallMarkers.length > 0) {
  734. _this.map.remove(_this.smallMarkers);
  735. }
  736. if (_this.smallClassProject) {
  737. _this.map.remove(_this.smallClassProject);
  738. }
  739. if (_this.projectPolygonArr) {
  740. _this.map.remove(_this.projectPolygonArr);
  741. }
  742. // if (_this.treeCompMarkers.length > 0) {
  743. // _this.map.remove(_this.treeCompMarkers);
  744. // }
  745. });
  746. let wms = new AMap.TileLayer.WMTS({
  747. url: 'http://t4.tianditu.gov.cn/img_w/wmts',
  748. blend: false,
  749. tileSize: 256,
  750. params: {
  751. Layer: 'img',
  752. Version: '1.0.0',
  753. Format: 'tiles',
  754. TileMatrixSet: 'w',
  755. STYLE: 'default',
  756. tk: '064688075f565aa463866b915c378e00'
  757. }
  758. });
  759. wms.setMap(_this.map);
  760. this.map.on('mousewheel', (e) => {
  761. var zoom = this.map.getZoom(); //获取当前地图级别
  762. if (
  763. zoom > '10.5' &&
  764. zoom < '11' &&
  765. this.$store.state.addr.mapLevel == 'street'
  766. ) {
  767. if (this.districtData.value) {
  768. let districtCode = this.districtData.value.substring(0, 6);
  769. this.$store.dispatch('searchArea', {
  770. parentId: districtCode,
  771. name: this.districtData.label,
  772. mapLevel: 'district'
  773. });
  774. }
  775. }
  776. // if (
  777. // zoom > '9' &&
  778. // zoom < '9.5' &&
  779. // this.$store.state.addr.mapLevel == 'district'
  780. // ) {
  781. // if (this.selectData.value) {
  782. // let districtCode = this.selectData.value.substring(0, 6);
  783. // this.$store.dispatch('searchArea', {
  784. // parentId: districtCode,
  785. // name: this.selectData.label,
  786. // mapLevel: 'city'
  787. // });
  788. // }
  789. // }
  790. // if (
  791. // zoom > '7.6' &&
  792. // zoom < '7.9' &&
  793. // this.$store.state.addr.mapLevel == 'city'
  794. // ) {
  795. // this.$store.dispatch('searchArea', {
  796. // parentId: '520000',
  797. // name: '贵州省',
  798. // mapLevel: 'province'
  799. // });
  800. // }
  801. });
  802. });
  803. },
  804. loadMapData(DistrictExplorer, $) {
  805. let that = this;
  806. //创建一个实例
  807. that.districtExplorer = window.districtExplorer = new DistrictExplorer({
  808. eventSupport: true, //打开事件支持
  809. bubble: true,
  810. map: that.map
  811. });
  812. //当前聚焦的区域
  813. // this.$tipMarkerContent = $('<div class="tipMarker top"></div>');
  814. this.$tipMarkerContent = $('<div class="tipMarker top"></div>');
  815. this.tipMarker = new AMap.Marker({
  816. content: this.$tipMarkerContent.get(0),
  817. offset: new AMap.Pixel(0, 0),
  818. bubble: true
  819. });
  820. //监听feature的hover事件
  821. this.districtExplorer.on(
  822. 'featureMouseout featureMouseover',
  823. (e, feature) => {
  824. this.toggleHoverFeature(
  825. feature,
  826. e.type === 'featureMouseover',
  827. e.originalEvent ? e.originalEvent.lnglat : null
  828. );
  829. }
  830. );
  831. //监听鼠标在feature上滑动
  832. this.districtExplorer.on('featureMousemove', (e) => {
  833. //更新提示位置
  834. this.tipMarker.setPosition(e.originalEvent.lnglat);
  835. });
  836. let adName = that.adName; //贵州省
  837. let mapLevel = that.mapLevel;
  838. let adcode = '520000';
  839. //feature被点击
  840. this.districtExplorer.on('featureClick', (e, feature) => {
  841. const props = feature.properties;
  842. if (props.subFeatureIndex != null) {
  843. adName = props.name;
  844. adcode = props.adcode;
  845. mapLevel = props.level;
  846. // for (let item of this.forestFarmData) {
  847. // if (props.name == item.cityName || props.name == item.countyName) {
  848. mapLevel = props.level;
  849. adName = props.name;
  850. this.$store.dispatch('searchArea', {
  851. parentId: props.adcode,
  852. name: props.name,
  853. mapLevel: props.level
  854. });
  855. let valCode = props.adcode + '000000';
  856. let areaId = '';
  857. this.vuexCityList.forEach((item) => {
  858. if (valCode == item.areaCode) {
  859. areaId = item.areaId;
  860. }
  861. });
  862. this.vuexDistrictList.forEach((item) => {
  863. if (valCode == item.areaCode) {
  864. areaId = item.areaId;
  865. }
  866. });
  867. if (props.level == 'city') {
  868. this.changeSelectCity({
  869. value: valCode,
  870. label: props.name,
  871. areaId: areaId,
  872. prop: '1'
  873. });
  874. } else if (props.level == 'district') {
  875. this.changeSelectDistrict({
  876. value: valCode,
  877. label: props.name,
  878. areaId: areaId,
  879. prop: '1'
  880. });
  881. }
  882. if (this.projectMarkerArr) {
  883. this.map.remove(this.projectMarkerArr);
  884. }
  885. if (this.economicsArr) {
  886. this.map.remove(this.economicsArr);
  887. }
  888. if (this.baseMarkerArr) {
  889. this.map.remove(this.baseMarkerArr);
  890. }
  891. if (this.eventMarkersArr) {
  892. this.map.remove(this.eventMarkersArr);
  893. }
  894. if (this.treesMarkerArr) {
  895. this.map.remove(this.treesMarkerArr);
  896. }
  897. }
  898. // }
  899. // }
  900. });
  901. this.switch2AreaNode(adcode);
  902. // this.getProjectList();
  903. },
  904. //根据Hover状态设置相关样式
  905. toggleHoverFeature(feature, isHover, position) {
  906. if (feature.properties.subFeatureIndex != null) {
  907. // this.tipMarker.setMap(isHover ? this.map : null);
  908. // this.tipMarker.setMap(isHover ? this.map : null);
  909. if (!feature) {
  910. return;
  911. }
  912. const props = feature.properties;
  913. // if (isHover) {
  914. // //更新提示内容
  915. // this.$tipMarkerContent.html(props.name);
  916. // //更新位置
  917. // this.tipMarker.setPosition(position || props.center);
  918. // }
  919. //更新相关多边形的样式
  920. const polys = this.districtExplorer.findFeaturePolygonsByAdcode(
  921. props.adcode
  922. );
  923. polys.forEach((elemnt) => {
  924. elemnt.setOptions({
  925. fillColor: '#0dbc79',
  926. fillOpacity: isHover ? 0.5 : 0
  927. });
  928. });
  929. }
  930. },
  931. //绘制某个区域的边界
  932. renderAreaPolygons(areaNode) {
  933. // 加载小班边界
  934. // this.getSmallClass();
  935. let _this = this;
  936. //更新地图视野
  937. if (this.$store.state.addr.mapLevel != 'street') {
  938. this.map.setBounds(areaNode.getBounds(), null, null, false);
  939. }
  940. // 加载相关标识
  941. this.mapPolygon();
  942. //清除已有的绘制内容
  943. this.districtExplorer.clearFeaturePolygons();
  944. // 清除已绘制的省市县名称
  945. this.map.remove(this.cityMarkerArr);
  946. //绘制子区域
  947. this.districtExplorer.renderSubFeatures(areaNode, () => {
  948. return {
  949. cursor: 'default',
  950. bubble: true,
  951. strokeColor: 'yellow', //线颜色
  952. strokeOpacity: 1, //线透明度
  953. strokeWeight: 2, //线宽
  954. fillOpacity: 0 //填充透明度
  955. };
  956. });
  957. //绘制父区域
  958. this.districtExplorer.renderParentFeature(areaNode, {
  959. cursor: 'default',
  960. bubble: true,
  961. strokeColor: '#00eeff', //线颜色
  962. strokeOpacity: 1, //线透明度
  963. strokeWeight: 2, //线宽
  964. fillOpacity: 0 //填充透明度
  965. });
  966. let areaPolygon = areaNode.getParentFeature();
  967. // 绘制父级蒙版
  968. // if (this.$store.state.addr.mapLevel == 'province' || this.$store.state.addr.mapLevel == 'city') {
  969. let outer = [
  970. new AMap.LngLat(-360, 90, true),
  971. new AMap.LngLat(-360, -90, true),
  972. new AMap.LngLat(360, -90, true),
  973. new AMap.LngLat(360, 90, true)
  974. ];
  975. let areaPolygonArr = [];
  976. areaPolygon.geometry.coordinates.forEach((element) => {
  977. areaPolygonArr.push(element[0]);
  978. });
  979. let holes = areaPolygonArr;
  980. let pathArray = [outer];
  981. pathArray.push.apply(pathArray, holes);
  982. this.polygon = new AMap.Polygon({
  983. pathL: pathArray,
  984. map: this.map,
  985. strokeColor: '#00eeff',
  986. strokeWeight: 1,
  987. fillColor: '#0c1b05', // 遮罩背景色
  988. fillOpacity: 0.8,
  989. height: 10000
  990. });
  991. this.polygon.setPath(pathArray);
  992. // }
  993. if (this.leftPage == 'forest' || this.leftPage == 'treeSpecies') {
  994. if (this.map) {
  995. this.getProjectList();
  996. }
  997. }
  998. if (areaPolygon.properties.level != 'district') {
  999. // this.setMarker();
  1000. } else {
  1001. this.map.remove(this.treesMarkerArr);
  1002. }
  1003. //查询乡镇 标识
  1004. if (areaPolygon.properties.level == 'district') {
  1005. if (this.$store.state.addr.mapLevel != 'street') {
  1006. this.getrjx(areaPolygon.properties.name);
  1007. }
  1008. AMap.plugin(['AMap.DistrictSearch'], function () {
  1009. let district = new AMap.DistrictSearch({
  1010. // 返回行政区边界坐标等具体信息
  1011. extensions: 'all',
  1012. // 设置查询行政区级别为 区 (district)
  1013. level: areaPolygon.properties.level,
  1014. // 显示下级行政区级数,1表示返回下一级行政区
  1015. subdistrict: 1
  1016. });
  1017. let areaCode = areaPolygon.properties.name;
  1018. district.search(areaCode, function (status, result) {
  1019. let streetArr = result.districtList[0].districtList;
  1020. for (let elementLs in streetArr) {
  1021. _this.streetMarker = new AMap.Text({
  1022. //c城市指示标
  1023. text: streetArr[elementLs].name,
  1024. zIndex: 1,
  1025. map: _this.map,
  1026. anchor: 'center', // 设置文本标记锚点
  1027. style: {
  1028. padding: '0px 6px',
  1029. color: '#fff',
  1030. border: 'none',
  1031. fontSize: '12px',
  1032. 'background-color': '#E6810C'
  1033. },
  1034. position: [
  1035. streetArr[elementLs].center.lng,
  1036. streetArr[elementLs].center.lat
  1037. ]
  1038. });
  1039. _this.streetMarkerArr.push(_this.streetMarker);
  1040. }
  1041. });
  1042. });
  1043. }
  1044. // 添加城市标识
  1045. let cityArr = areaNode.getSubFeatures();
  1046. if (cityArr) {
  1047. for (let i = 0; i < cityArr.length; i++) {
  1048. this.cityMarker = new AMap.Text({
  1049. //c城市指示标
  1050. text: cityArr[i].properties.name,
  1051. zIndex: 1,
  1052. map: this.map,
  1053. anchor: 'center', // 设置文本标记锚点
  1054. style: {
  1055. padding: '0px 6px',
  1056. color: '#fff',
  1057. border: 'none',
  1058. fontSize: '12px',
  1059. 'background-color': '#E6810C'
  1060. },
  1061. position: cityArr[i].properties.centroid
  1062. });
  1063. this.cityMarkerArr.push(this.cityMarker);
  1064. }
  1065. }
  1066. },
  1067. //切换区域后刷新显示内容
  1068. refreshAreaNode(areaNode) {
  1069. this.districtExplorer.setHoverFeature(null);
  1070. this.renderAreaPolygons(areaNode);
  1071. },
  1072. //切换区域
  1073. switch2AreaNode(adcode, mapLevel, selectStreet, page, callback) {
  1074. // if (
  1075. // this.currentAreaNode &&
  1076. // '' + this.currentAreaNode.getAdcode() === '' + adcode
  1077. // ) {
  1078. // return;
  1079. // }
  1080. this.loadAreaNode(adcode, (error, areaNode) => {
  1081. if (error) {
  1082. if (callback) {
  1083. callback(error);
  1084. }
  1085. return;
  1086. }
  1087. this.currentAreaNode = areaNode;
  1088. //设置当前使用的定位用节点
  1089. this.districtExplorer.setAreaNodesForLocating([this.currentAreaNode]);
  1090. this.refreshAreaNode(areaNode);
  1091. if (callback) {
  1092. callback(null, areaNode);
  1093. }
  1094. });
  1095. },
  1096. // 加载区域
  1097. loadAreaNode(adcode, callback) {
  1098. this.districtExplorer.loadAreaNode(adcode, (error, areaNode) => {
  1099. if (error) {
  1100. if (callback) {
  1101. callback(error);
  1102. }
  1103. window.console.error(error);
  1104. return;
  1105. }
  1106. if (callback) {
  1107. callback(null, areaNode);
  1108. }
  1109. });
  1110. },
  1111. // 加载林场
  1112. // setMarker() {
  1113. // this.forestFarmData = [];
  1114. // if (this.treesMarkerArr.length > 0) {
  1115. // this.map.remove(this.treesMarkerArr);
  1116. // }
  1117. // farmInfo().then((res) => {
  1118. // this.forestFarmData = res.rows;
  1119. // let parentMarker = require('@/assets/img/pre-marker.png');
  1120. // this.forestFarmData.forEach((item) => {
  1121. // let selectCity = this.$store.state.addr.selectCity.label;
  1122. // switch (this.$store.state.addr.selectCity.label) {
  1123. // case '黔西南州':
  1124. // selectCity = '黔西南布依族苗族自治州';
  1125. // break;
  1126. // case '黔东南州':
  1127. // selectCity = '黔东南苗族侗族自治州';
  1128. // break;
  1129. // case '黔南州':
  1130. // selectCity = '黔南布依族苗族自治州';
  1131. // break;
  1132. // }
  1133. // if (this.$store.state.addr.selectCity.label) {
  1134. // if (selectCity == item.cityName) {
  1135. // let lngLat = [item.longitude, item.latitude];
  1136. // this.treesMarker = new AMap.Marker({
  1137. // map: this.map,
  1138. // position: lngLat,
  1139. // icon: parentMarker,
  1140. // anchor: 'bottom-center',
  1141. // offset: new AMap.Pixel(0, 0)
  1142. // });
  1143. // this.treesMarker.setLabel({
  1144. // direction: 'bottom',
  1145. // offset: new AMap.Pixel(0, 0), //设置文本标注偏移量
  1146. // content: `<div>${item.forestName}</div>` //设置文本标注内容
  1147. // });
  1148. // this.treesMarkerArr.push(this.treesMarker);
  1149. // }
  1150. // } else {
  1151. // let lngLat = [item.longitude, item.latitude];
  1152. // this.treesMarker = new AMap.Marker({
  1153. // map: this.map,
  1154. // position: lngLat,
  1155. // icon: parentMarker,
  1156. // anchor: 'bottom-center',
  1157. // offset: new AMap.Pixel(0, 0)
  1158. // });
  1159. // this.treesMarker.setLabel({
  1160. // direction: 'bottom',
  1161. // offset: new AMap.Pixel(0, 0), //设置文本标注偏移量
  1162. // content: `<div>${item.forestName}</div>` //设置文本标注内容
  1163. // });
  1164. // this.treesMarkerArr.push(this.treesMarker);
  1165. // }
  1166. // });
  1167. // });
  1168. // },
  1169. // 查询项目列表
  1170. getProjectList() {
  1171. let params = {
  1172. cityId: this.$store.state.addr.selectCity.areaId,
  1173. countyId: this.$store.state.addr.selectDistrict.areaId,
  1174. townId: this.$store.state.addr.selectStreet.areaId
  1175. };
  1176. // image: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
  1177. projectList(params).then((res) => {
  1178. if (res.code == 200) {
  1179. let infoIcon = new AMap.Icon({
  1180. size: new AMap.Size(20, 25), // 图标尺寸
  1181. image: this.projectIcon,
  1182. imageSize: new AMap.Size(20, 25) // 根据所设置的大小拉伸或压缩图片
  1183. });
  1184. res.rows.forEach((element) => {
  1185. if (element.longitude && element.latitude) {
  1186. let lnglat = new AMap.LngLat(element.longitude, element.latitude);
  1187. var projectMarker = new AMap.Marker({
  1188. map: this.map,
  1189. position: lnglat,
  1190. offset: new AMap.Pixel(0, -30),
  1191. icon: infoIcon,
  1192. zIndex: 999,
  1193. topWhenClick: true
  1194. });
  1195. this.projectMarkerArr.push(projectMarker);
  1196. }
  1197. });
  1198. }
  1199. });
  1200. },
  1201. // 加载乡镇边界
  1202. getrjx(cityName) {
  1203. if (cityName == '榕江县') {
  1204. axios.get('/static/rongjangintown.json').then((res) => {
  1205. this.putPolygonData = res.data.features;
  1206. this.putPolygon();
  1207. });
  1208. } else if (cityName == '清镇市') {
  1209. axios.get('/static/qingzhenzhen.json').then((res) => {
  1210. this.putPolygonData = res.data.features;
  1211. this.putPolygon();
  1212. });
  1213. }
  1214. },
  1215. putPolygon() {
  1216. let that = this;
  1217. this.putPolygonData.forEach((element) => {
  1218. this.boundaryPolygon = new AMap.Polygon({
  1219. map: that.map,
  1220. path: element.geometry.coordinates,
  1221. strokeOpacity: 1,
  1222. fillOpacity: 0,
  1223. strokeColor: 'yellow',
  1224. strokeWeight: 1,
  1225. zIndex: 999,
  1226. cursor: 'pointer'
  1227. });
  1228. that.townPolygons.push(this.boundaryPolygon);
  1229. this.boundaryPolygon.on('click', (e) => {
  1230. let centerLanLatArr = [e.lnglat.lng, e.lnglat.lat];
  1231. that.map.remove(that.townPolygons);
  1232. // that.districtExplorer.clearFeaturePolygons();
  1233. let valCode = element.properties.XIANG;
  1234. let areaId = '';
  1235. let label = element.properties.XIANG_NAME;
  1236. this.vuexStreetList.forEach((item) => {
  1237. if (valCode == item.areaCode) {
  1238. areaId = item.areaId;
  1239. }
  1240. });
  1241. this.changeSelectStreet({
  1242. value: valCode,
  1243. label: label,
  1244. areaId: areaId
  1245. });
  1246. this.changeSelectAddr('street');
  1247. this.$store.dispatch('searchArea', {
  1248. parentId: valCode,
  1249. name: label,
  1250. mapLevel: 'street'
  1251. });
  1252. let townPolygon = new AMap.Polygon({
  1253. map: that.map,
  1254. path: element.geometry.coordinates,
  1255. strokeColor: 'yellow',
  1256. strokeWeight: 3,
  1257. fillOpacity: 0
  1258. });
  1259. this.townPolygonArr.push(townPolygon);
  1260. that.map.setZoomAndCenter(14, centerLanLatArr, false, 13);
  1261. });
  1262. that.boundaryPolygon.on('rightclick', function (e) {
  1263. if (
  1264. that.smallMarkers ||
  1265. that.baseMarkers ||
  1266. that.eventMarkers ||
  1267. that.smallClassProject ||
  1268. that.projectPolygonArr
  1269. ) {
  1270. that.map.remove(that.smallMarkers);
  1271. that.map.remove(that.baseMarkers);
  1272. that.map.remove(that.eventMarkers);
  1273. that.map.remove(that.smallClassProject);
  1274. that.map.remove(that.projectPolygonArr);
  1275. }
  1276. });
  1277. });
  1278. },
  1279. async getSmallClass() {
  1280. let that = this;
  1281. that.smallClassMapArr = [];
  1282. let params = {
  1283. // cityId: that.$store.state.addr.selectCity.areaId,
  1284. // countyId: that.$store.state.addr.selectDistrict.areaId,
  1285. townId: this.$store.state.addr.selectStreet.areaId
  1286. };
  1287. if (that.smallClassPolygonArr.length > 0) {
  1288. that.map.remove(that.smallClassPolygonArr);
  1289. }
  1290. if (that.treesPolygonArr.length > 0) {
  1291. that.map.remove(that.treesPolygonArr);
  1292. }
  1293. // let pageData = {
  1294. // pageNum: 0,
  1295. // pageSize: 25
  1296. // };
  1297. let mapLevel = that.$store.state.addr.mapLevel;
  1298. let res = await smallClassMap({ ...params });
  1299. if (res.code == 200) {
  1300. res.rows.forEach((item) => {
  1301. // if (item.smallId != null) {
  1302. // }
  1303. // this.smallClassMapArr.push(item);
  1304. if (that.leftPage === 'forest') {
  1305. this.addForestPolygon(item);
  1306. } else if (this.leftPage === 'treeSpecies') {
  1307. this.addTreeSpeciesPolygon(item);
  1308. }
  1309. });
  1310. }
  1311. // if (res.code == 200 && res.total > 25) {
  1312. // const total = res.total;
  1313. // const totalPage = Math.ceil(total / pageData.pageSize);
  1314. // const render = (page, mapLevel) => {
  1315. // if (page >= totalPage) return;
  1316. // requestAnimationFrame(() => {
  1317. // render(page + 1, mapLevel);
  1318. // pageData.pageNum = page;
  1319. // smallClassMap({ ...params, ...pageData }).then((response) => {
  1320. // if (response.code == 200) {
  1321. // response.rows.forEach((item) => {
  1322. // // if (item.smallId != null) {
  1323. // // }
  1324. // // this.smallClassMapArr.push(item);
  1325. // if (that.leftPage === 'forest') {
  1326. // this.addForestPolygon(item);
  1327. // } else if (this.leftPage === 'treeSpecies') {
  1328. // this.addTreeSpeciesPolygon(item);
  1329. // }
  1330. // });
  1331. // }
  1332. // });
  1333. // });
  1334. // };
  1335. // render(pageData.pageNum, mapLevel);
  1336. // } else {
  1337. // res.rows.forEach((item) => {
  1338. // if (that.leftPage === 'forest') {
  1339. // this.addForestPolygon(item);
  1340. // } else if (this.leftPage === 'treeSpecies') {
  1341. // this.addTreeSpeciesPolygon(item);
  1342. // }
  1343. // });
  1344. // }
  1345. },
  1346. mapPolygon() {
  1347. // if (this.smallClassMapArr) {
  1348. // if (this.leftPage === 'forest') {
  1349. // // this.addForestPolygon(this.smallClassMapArr);
  1350. // if (
  1351. // // this.$store.state.addr.mapLevel == 'district' ||
  1352. // this.$store.state.addr.mapLevel == 'street'
  1353. // ) {
  1354. // this.getForestSample(this.leftPage);
  1355. // }
  1356. // } else if (this.leftPage === 'treeSpecies') {
  1357. // // this.addTreeSpeciesPolygon();
  1358. // if (
  1359. // // this.$store.state.addr.mapLevel == 'district' ||
  1360. // this.$store.state.addr.mapLevel == 'street'
  1361. // ) {
  1362. // this.getRightScrollData(this.leftPage);
  1363. // }
  1364. // } else
  1365. if (this.leftPage === 'economics') {
  1366. this.getEconomics();
  1367. } else if (this.leftPage === 'event') {
  1368. this.getEven();
  1369. }
  1370. // }
  1371. },
  1372. addForestPolygon(item) {
  1373. let that = this;
  1374. if (item) {
  1375. // console.log(item);
  1376. // smallClassMapArr.forEach((item) => {
  1377. let polyData = JSON.parse(item.mapInfo);
  1378. for (let elementLs in polyData.features) {
  1379. let smallClassPolygon = new AMap.Polygon({
  1380. map: that.map,
  1381. path: polyData.features[elementLs].geometry.coordinates,
  1382. strokeOpacity: 1,
  1383. fillOpacity: 0,
  1384. strokeColor: 'red',
  1385. strokeWeight: 2,
  1386. zIndex: 999,
  1387. cursor: 'pointer',
  1388. fillColor: ''
  1389. });
  1390. this.smallClassPolygonArr.push(smallClassPolygon);
  1391. smallClassPolygon.on('click', (e) => {
  1392. let imgList = [];
  1393. if (item.imageList.length > 0) {
  1394. item.imageList.forEach((element) => {
  1395. imgList.push(`<img id="markerLabel" src="${element.image}"/>`);
  1396. });
  1397. } else {
  1398. imgList.push('暂无图片');
  1399. }
  1400. this.imgClick();
  1401. let smallLabel =
  1402. "<div class='info-details'>" +
  1403. "<h5 class='marker-title'>" +
  1404. item.countyName +
  1405. '-' +
  1406. item.smallNumber +
  1407. '</h5>' +
  1408. "<div class='marker-content'>" +
  1409. '<div>' +
  1410. '<p>小班号:' +
  1411. item.smallNumber +
  1412. '</p>' +
  1413. '<p>样地数:' +
  1414. item.sampleCount +
  1415. '</p>' +
  1416. '<p>小班蓄积量:' +
  1417. item.smallClassStock +
  1418. '(立方米)' +
  1419. '</p>' +
  1420. '<p>小班占地面积:' +
  1421. item.landArea +
  1422. '(亩)' +
  1423. '</p>' +
  1424. '<p>小班树种组成:' +
  1425. item.treeComp +
  1426. '</p>' +
  1427. '<p>地类:' +
  1428. item.landType +
  1429. '</p>' +
  1430. '<p>林地权属:' +
  1431. item.landOwner +
  1432. '</p>' +
  1433. '<p>林木权属:' +
  1434. item.forestOwner +
  1435. '</p>' +
  1436. '<p>林种:' +
  1437. item.forestClass +
  1438. '</p>' +
  1439. '<p>树种结构:' +
  1440. item.treeStruct +
  1441. '</p>' +
  1442. '</div>' +
  1443. '<div>' +
  1444. '<p>起源:' +
  1445. item.origin +
  1446. '</p>' +
  1447. '<p>优势树种:' +
  1448. item.superTree +
  1449. '</p>' +
  1450. '<p>主要灌木名称:' +
  1451. item.shrubName +
  1452. '</p>' +
  1453. '<p>地貌:' +
  1454. item.landForm +
  1455. '</p>' +
  1456. '<p>海拔:' +
  1457. item.altitude +
  1458. '</p>' +
  1459. '<p>坡位:' +
  1460. item.slopePosit +
  1461. '</p>' +
  1462. '<p>坡向:' +
  1463. item.slopeDirect +
  1464. '</p>' +
  1465. '<p>坡形:' +
  1466. item.slopeForm +
  1467. '</p>' +
  1468. '<p>坡度:' +
  1469. item.slope +
  1470. '</p>' +
  1471. '<p>森林健康度:' +
  1472. item.forestHealth +
  1473. '</p>' +
  1474. '</div>' +
  1475. '</div>' +
  1476. '<div class="imgList">' +
  1477. "<span class='marker-span'>图片:</span>" +
  1478. '<div class="marker-imgs">' +
  1479. imgList +
  1480. '</div>' +
  1481. '</div>' +
  1482. '</div>';
  1483. that.smallMarker = new AMap.Marker({
  1484. map: that.map,
  1485. position: lanLatArr,
  1486. icon: require('@/assets/img/small-marker.png'),
  1487. anchor: 'bottom-center',
  1488. offset: new AMap.Pixel(-5, -6)
  1489. });
  1490. that.smallMarker.setLabel({
  1491. direction: 'right',
  1492. offset: new AMap.Pixel(-230, -160), //设置文本标注偏移量
  1493. content: smallLabel //设置文本标注内容
  1494. });
  1495. // that.smallMarker.setMap(that.map);
  1496. that.smallMarkers.push(that.smallMarker);
  1497. smallClassPolygon.setOptions({
  1498. fillOpacity: 0.7,
  1499. fillColor: 'yellow'
  1500. });
  1501. });
  1502. smallClassPolygon.on('mouseout', () => {
  1503. smallClassPolygon.setOptions({
  1504. fillOpacity: 0,
  1505. fillColor: '#ccebc5'
  1506. });
  1507. });
  1508. }
  1509. if (item.longitude && item.latitude) {
  1510. var lanLatArr = [];
  1511. lanLatArr = [item.longitude, item.latitude];
  1512. if (
  1513. this.$store.state.addr.mapLevel == 'district' ||
  1514. this.$store.state.addr.mapLevel == 'street'
  1515. ) {
  1516. this.smallClassN = new AMap.Text({
  1517. map: this.map,
  1518. position: lanLatArr,
  1519. text: item.smallNumber,
  1520. anchor: 'bottom-center',
  1521. offset: new AMap.Pixel(0, 8),
  1522. style: {
  1523. 'background-color': 'transparent',
  1524. border: 'none',
  1525. color: '#05dfff',
  1526. fontSize: '12px'
  1527. }
  1528. });
  1529. this.smallClassNArr.push(this.smallClassN);
  1530. }
  1531. }
  1532. // this.map.add(that.smallClassPolygon);
  1533. // });
  1534. }
  1535. },
  1536. imgClick() {
  1537. document.getElementsByTagName('div')[0].addEventListener('click', (e) => {
  1538. if (e.target.id === 'markerLabel') {
  1539. this.imgDialogVisible = true;
  1540. this.dialogImageUrl = e.target.currentSrc;
  1541. }
  1542. });
  1543. },
  1544. // 获取样地数据
  1545. getForestSample(page) {
  1546. forestSample({
  1547. // cityId: this.$store.state.addr.selectCity.areaId,
  1548. // countyId: this.$store.state.addr.selectDistrict.areaId,
  1549. townId: this.$store.state.addr.selectStreet.areaId
  1550. }).then((res) => {
  1551. let sampleMarker = require('@/assets/img/sample-marker.png');
  1552. let iconMeta = [28, 28];
  1553. this.setMarkers(res, sampleMarker, iconMeta, page);
  1554. });
  1555. },
  1556. // 添加地图标注(样地、树种)
  1557. setMarkers(res, sampleMarker, iconMeta, page) {
  1558. let _this = this;
  1559. if (this.forestMarker) {
  1560. this.forestMarker.setMap(null);
  1561. this.forestMarker = null;
  1562. }
  1563. this.markerData = res;
  1564. let iconMarker = sampleMarker;
  1565. let iconMetaSet = iconMeta;
  1566. let sampleIcon = new AMap.Icon({
  1567. size: new AMap.Size(iconMetaSet[0], iconMetaSet[1]), // 图标尺寸
  1568. image: iconMarker,
  1569. imageSize: new AMap.Size(iconMetaSet[0], iconMetaSet[1]) // 根据所设置的大小拉伸或压缩图片
  1570. });
  1571. this.markerData.rows.forEach((item) => {
  1572. let lngLat = [item.longitude, item.latitude];
  1573. if (item.longitude && item.latitude) {
  1574. this.forestMarker = new AMap.Marker({
  1575. map: _this.map,
  1576. position: lngLat,
  1577. icon: sampleIcon,
  1578. anchor: 'bottom-center',
  1579. offset: new AMap.Pixel(0, -18)
  1580. });
  1581. if (page === 'forest') {
  1582. this.forestMarker.setLabel({
  1583. direction: 'right',
  1584. offset: new AMap.Pixel(-8, 0), //设置文本标注偏移量
  1585. content: `<div style="color:#05dfff">${item.smallNumber}-${item.sampleNumber}</div>` //设置文本标注内容
  1586. });
  1587. let clickLabel =
  1588. "<div class='info-small'>" +
  1589. "<h5 class='marker-title'>" +
  1590. item.smallNumber +
  1591. '-' +
  1592. item.sampleNumber +
  1593. '</h5>' +
  1594. "<div class='marker-content'>" +
  1595. '<p>样地号:' +
  1596. item.sampleNumber +
  1597. '</p>' +
  1598. '<p>所属小班:' +
  1599. item.smallNumber +
  1600. '</p>' +
  1601. '<p>样地蓄积:' +
  1602. item.landStock +
  1603. '</p>' +
  1604. '<p>样地株数:' +
  1605. item.landNumber +
  1606. '</p>' +
  1607. '</div>' +
  1608. '</div>';
  1609. let lastMarker = new AMap.Marker({
  1610. position: lngLat,
  1611. icon: sampleIcon,
  1612. anchor: 'bottom-center',
  1613. offset: new AMap.Pixel(0, -18)
  1614. });
  1615. lastMarker.setLabel({
  1616. zIndex: 120,
  1617. direction: 'top',
  1618. offset: new AMap.Pixel(-4, 0), //设置文本标注偏移量
  1619. content: clickLabel //设置文本标注内容
  1620. });
  1621. this.forestMarker.on('click', function (e) {
  1622. _this.map.add(lastMarker);
  1623. });
  1624. this.forestMarker.on('mouseout', function (e) {
  1625. _this.map.remove(lastMarker);
  1626. });
  1627. } else if (page === 'treeSpecies') {
  1628. this.forestMarker.setLabel({
  1629. direction: 'top',
  1630. offset: new AMap.Pixel(0, 8), //设置文本标注偏移量
  1631. content: `<div class="label-treecomp">${item.treeComp}<span class="smallH">${item.smallNumber}</span></div>` //设置文本标注内容
  1632. });
  1633. }
  1634. // this.map.add(this.forestMarker);
  1635. // forestMarker
  1636. this.forestMarkerArr.push(this.forestMarker);
  1637. }
  1638. });
  1639. },
  1640. addTreeSpeciesPolygon(item) {
  1641. let that = this;
  1642. // that.smallClassMapArr.forEach((item) => {
  1643. let polyData = JSON.parse(item.mapInfo);
  1644. for (let elementLs in polyData.features) {
  1645. let polygonColor = '';
  1646. this.treePlant.forEach((tree) => {
  1647. if (tree.plantName == item.superTree && item.superTree == '硬阔') {
  1648. polygonColor = '#00da85';
  1649. } else if (
  1650. tree.plantName == item.superTree &&
  1651. item.superTree == '软阔'
  1652. ) {
  1653. polygonColor = '#009bfd';
  1654. } else if (
  1655. tree.plantName == item.superTree &&
  1656. item.superTree == '杉木'
  1657. ) {
  1658. polygonColor = '#eca62d';
  1659. } else if (
  1660. tree.plantName == item.superTree &&
  1661. item.superTree == '马尾松'
  1662. ) {
  1663. polygonColor = '#b82dec';
  1664. }
  1665. });
  1666. let polygon = new AMap.Polygon({
  1667. map: that.map,
  1668. path: polyData.features[elementLs].geometry.coordinates,
  1669. strokeOpacity: 1,
  1670. fillOpacity: 0.6,
  1671. strokeColor: 'red',
  1672. strokeWeight: 2,
  1673. zIndex: 999,
  1674. cursor: 'pointer',
  1675. fillColor: polygonColor
  1676. });
  1677. this.treesPolygonArr.push(polygon);
  1678. if (item.longitude && item.latitude) {
  1679. var lanLatArr = [];
  1680. // polygon.on('click', (e) => {
  1681. lanLatArr = [item.longitude, item.latitude];
  1682. let treeSmallLabel =
  1683. "<div class='info-small'>" +
  1684. "<h5 class='marker-title'>小班" +
  1685. item.smallNumber +
  1686. '</h5>' +
  1687. "<div class='marker-content'>" +
  1688. '<p>树种组成:' +
  1689. item.treeComp +
  1690. '</p>' +
  1691. '<p>树种结构:' +
  1692. item.treeStruct +
  1693. '</p>' +
  1694. '<p>优势树种:' +
  1695. item.superTree +
  1696. '</p>' +
  1697. '<p>优势树种平均胸径:' +
  1698. item.superTreeDbh +
  1699. '厘米' +
  1700. '</p>' +
  1701. '<p>优势树种平均高:' +
  1702. item.superTreeHigh +
  1703. '米' +
  1704. '</p>' +
  1705. '<p>位置:' +
  1706. item.countyName +
  1707. item.townName +
  1708. item.villageName +
  1709. '</p>' +
  1710. '</div>' +
  1711. '</div>';
  1712. that.smallMarker = new AMap.Marker({
  1713. map: that.map,
  1714. position: lanLatArr,
  1715. icon: require('@/assets/img/small-marker.png'),
  1716. anchor: 'bottom-center',
  1717. offset: new AMap.Pixel(0, 0)
  1718. });
  1719. that.smallMarker.setLabel({
  1720. direction: 'top',
  1721. offset: new AMap.Pixel(-10, 0), //设置文本标注偏移量
  1722. content: treeSmallLabel //设置文本标注内容
  1723. });
  1724. that.treeCompMarkers.push(that.smallMarker);
  1725. // });
  1726. that.map.on('rightclick', function (e) {
  1727. if (that.treeCompMarkers) {
  1728. that.map.remove(that.treeCompMarkers);
  1729. }
  1730. if (that.treesPolygonArr) {
  1731. that.map.remove(that.treesPolygonArr);
  1732. }
  1733. });
  1734. }
  1735. }
  1736. // });
  1737. },
  1738. // 获取小班列表
  1739. getRightScrollData(page) {
  1740. rightScrollData({
  1741. // cityId: this.$store.state.addr.selectCity.areaId,
  1742. // countyId: this.$store.state.addr.selectDistrict.areaId,
  1743. townId: this.$store.state.addr.selectStreet.areaId
  1744. }).then((res) => {
  1745. let sampleMarker = require('@/assets/img/sanjiaod.png');
  1746. let iconMeta = [16, 10];
  1747. this.setMarkers(res, sampleMarker, iconMeta, page);
  1748. });
  1749. },
  1750. // 事件信息
  1751. getEven() {
  1752. let _this = this;
  1753. alarmDataApi({
  1754. cityId: this.$store.state.addr.selectCity.areaId,
  1755. countyId: this.$store.state.addr.selectDistrict.areaId,
  1756. townId: this.$store.state.addr.selectStreet.areaId
  1757. }).then((res) => {
  1758. res.data.forEach((item) => {
  1759. let lanLatArr = [item.longitude, item.latitude];
  1760. let baseIcon = '';
  1761. let fireIcon = require('@/assets/img/fire.png');
  1762. let cutTreeIcon = require('@/assets/img/cutTree.png');
  1763. let insectpestIcon = require('@/assets/img/insectpest.png');
  1764. let stealIcon = require('@/assets/img/steal.png');
  1765. if (item.eventType == 1) {
  1766. item.eventContLabel = '火灾';
  1767. baseIcon = fireIcon;
  1768. } else if (item.eventType == 2) {
  1769. item.eventContLabel = '砍伐';
  1770. baseIcon = cutTreeIcon;
  1771. } else if (item.eventType == 3) {
  1772. item.eventContLabel = '病虫害';
  1773. baseIcon = insectpestIcon;
  1774. } else if (item.eventType == 4) {
  1775. item.eventContLabel = '偷盗林木';
  1776. baseIcon = stealIcon;
  1777. }
  1778. _this.smallMarker = new AMap.Marker({
  1779. map: _this.map,
  1780. position: lanLatArr,
  1781. icon: baseIcon,
  1782. anchor: 'bottom-center',
  1783. offset: new AMap.Pixel(0, 0),
  1784. zIndex: 999
  1785. });
  1786. _this.eventMarkersArr.push(_this.smallMarker);
  1787. _this.smallMarker.on('click', function (e) {
  1788. let treeSmallLabel =
  1789. "<div class='info-small'>" +
  1790. "<h5 class='marker-title'>最新事件" +
  1791. '</h5>' +
  1792. "<div class='marker-content'>" +
  1793. '<p>事件类型:' +
  1794. item.eventContLabel +
  1795. '</p>' +
  1796. '<p>上报时间:' +
  1797. item.createTime +
  1798. '</p>' +
  1799. '<p>上报人:' +
  1800. item.createBy +
  1801. '</p>' +
  1802. '<p>位置:' +
  1803. item.cityName +
  1804. item.countyName +
  1805. item.townName +
  1806. item.villageName +
  1807. '</p>' +
  1808. '</div>' +
  1809. '</div>';
  1810. _this.eventMarker = new AMap.Marker({
  1811. position: lanLatArr,
  1812. icon: baseIcon,
  1813. anchor: 'bottom-center',
  1814. offset: new AMap.Pixel(0, 0),
  1815. zIndex: 999
  1816. });
  1817. _this.eventMarker.setLabel({
  1818. direction: 'top',
  1819. offset: new AMap.Pixel(-10, 0), //设置文本标注偏移量
  1820. content: treeSmallLabel //设置文本标注内容
  1821. });
  1822. _this.map.add(_this.eventMarker);
  1823. });
  1824. _this.smallMarker.on('mouseout', function (e) {
  1825. if (!_this.eventMarker) {
  1826. return;
  1827. } else {
  1828. _this.map.remove(_this.eventMarker);
  1829. }
  1830. });
  1831. });
  1832. });
  1833. },
  1834. // 林业经济
  1835. getEconomics() {
  1836. let _this = this;
  1837. financeBasePlant({
  1838. cityId: this.$store.state.addr.selectCity.areaId,
  1839. countyId: this.$store.state.addr.selectDistrict.areaId
  1840. // townId: this.$store.state.addr.selectStreet.areaId
  1841. }).then((res) => {
  1842. let economicsList = [];
  1843. let baseList = [];
  1844. res.rows.forEach((element) => {
  1845. economicsList.push({
  1846. longitude: element.cateLongitude,
  1847. latitude: element.cateLatitude,
  1848. icon: element.image
  1849. });
  1850. baseList.push({
  1851. baseId: element.baseId,
  1852. baseName: element.baseName,
  1853. longitude: element.baseLongitude,
  1854. latitude: element.baseLatitude
  1855. });
  1856. });
  1857. economicsList.forEach((item) => {
  1858. let lanLatArr = [item.longitude, item.latitude];
  1859. let beeIcon = item.icon;
  1860. let iconMeta = [82, 26];
  1861. let sampleIcon = new AMap.Icon({
  1862. size: new AMap.Size(iconMeta[0], iconMeta[1]), // 图标尺寸
  1863. image: beeIcon,
  1864. imageSize: new AMap.Size(iconMeta[0], iconMeta[1]) // 根据所设置的大小拉伸或压缩图片
  1865. });
  1866. this.smallMarker = new AMap.Marker({
  1867. map: _this.map,
  1868. position: lanLatArr,
  1869. icon: sampleIcon,
  1870. anchor: 'bottom-center',
  1871. offset: new AMap.Pixel(0, 0)
  1872. });
  1873. this.economicsArr.push(this.smallMarker);
  1874. // this.smallMarker.setMap(this.map);
  1875. });
  1876. baseList.forEach((element) => {
  1877. let lanLatArr = [element.longitude, element.latitude];
  1878. let baseIcon = require('@/assets/img/postion.png');
  1879. let iconMeta = [20, 29];
  1880. let sampleIcon = new AMap.Icon({
  1881. size: new AMap.Size(iconMeta[0], iconMeta[1]), // 图标尺寸
  1882. image: baseIcon,
  1883. imageSize: new AMap.Size(iconMeta[0], iconMeta[1]) // 根据所设置的大小拉伸或压缩图片
  1884. });
  1885. this.baseMarker = new AMap.Marker({
  1886. map: this.map,
  1887. position: lanLatArr,
  1888. icon: sampleIcon,
  1889. anchor: 'bottom-center',
  1890. offset: new AMap.Pixel(0, 0)
  1891. });
  1892. this.baseMarker.setLabel({
  1893. direction: 'right',
  1894. offset: new AMap.Pixel(0, 0), //设置文本标注偏移量
  1895. content: `<div>${element.baseName}</div>` //设置文本标注内容
  1896. });
  1897. this.baseMarkerArr.push(this.baseMarker);
  1898. this.baseMarker.on('click', function (e) {
  1899. financeBaseDetail({ baseId: element.baseId }).then((res) => {
  1900. if (res.code == 200) {
  1901. let treeSmallLabel =
  1902. "<div class='info-small'>" +
  1903. "<h5 class='marker-title'>" +
  1904. res.data.baseName +
  1905. '</h5>' +
  1906. "<div class='marker-content'>" +
  1907. '<p>基地名称:' +
  1908. res.data.baseName +
  1909. '</p>' +
  1910. '<p>种植/养殖/加工作物:' +
  1911. res.data.cropName +
  1912. '</p>' +
  1913. '<p>占地面积:' +
  1914. res.data.baseArea +
  1915. '亩' +
  1916. '</p>' +
  1917. '<p>位置:' +
  1918. res.data.cityName +
  1919. res.data.countyName +
  1920. res.data.townName +
  1921. '</p>' +
  1922. '</div>' +
  1923. '</div>';
  1924. _this.baseMarker.setLabel({
  1925. direction: 'top',
  1926. offset: new AMap.Pixel(0, 0), //设置文本标注偏移量
  1927. content: treeSmallLabel //设置文本标注内容
  1928. });
  1929. }
  1930. });
  1931. });
  1932. this.baseMarker.on('mouseout', function (e) {
  1933. _this.baseMarker.setLabel({
  1934. direction: 'right',
  1935. offset: new AMap.Pixel(0, 0), //设置文本标注偏移量
  1936. content: `<div>${element.baseName}</div>` //设置文本标注内容
  1937. });
  1938. });
  1939. });
  1940. });
  1941. },
  1942. getTreePlant() {
  1943. treePlant().then((res) => {
  1944. this.treePlant = res.rows;
  1945. });
  1946. }
  1947. }
  1948. };
  1949. </script>
  1950. <style lang='scss' scoped>
  1951. #container {
  1952. width: 100%;
  1953. height: 100vh;
  1954. /deep/ .tdt-pane {
  1955. z-index: auto;
  1956. }
  1957. }
  1958. /deep/ .amap-marker-content {
  1959. .tipMarker {
  1960. color: #555;
  1961. background-color: rgba(255, 254, 239, 0.8);
  1962. border: 1px solid #7e7e7e;
  1963. padding: 2px 6px;
  1964. font-size: 12px;
  1965. white-space: nowrap;
  1966. display: inline-block;
  1967. &:before,
  1968. &:after {
  1969. content: '';
  1970. display: block;
  1971. position: absolute;
  1972. margin: auto;
  1973. width: 0;
  1974. height: 0;
  1975. border: solid transparent;
  1976. border-width: 5px 5px;
  1977. }
  1978. &.top {
  1979. transform: translate(-50%, -110%);
  1980. &:before,
  1981. &:after {
  1982. bottom: -9px;
  1983. left: 0;
  1984. right: 0;
  1985. border-top-color: rgba(255, 254, 239, 0.8);
  1986. }
  1987. &:before {
  1988. bottom: -10px;
  1989. border-top-color: #7e7e7e;
  1990. }
  1991. }
  1992. }
  1993. }
  1994. /deep/ .amap-logo,
  1995. .amap-copyright {
  1996. display: block !important;
  1997. visibility: inherit !important;
  1998. }
  1999. /deep/ .amap-icon {
  2000. overflow: unset !important;
  2001. }
  2002. /deep/ .info-small {
  2003. background-image: url('../assets/img/small-label.png');
  2004. background-repeat: no-repeat;
  2005. background-size: 100% 100%;
  2006. width: 18rem;
  2007. // height: 10rem;
  2008. color: #fff;
  2009. .marker-title {
  2010. margin: 0 auto;
  2011. line-height: 30px;
  2012. }
  2013. .marker-content {
  2014. padding: 0 20px 10px 20px;
  2015. p {
  2016. text-align: left;
  2017. font-size: 12px;
  2018. margin: 0;
  2019. line-height: 28px;
  2020. }
  2021. }
  2022. }
  2023. /deep/ .info-details {
  2024. background-image: url('../assets/img/small-label.png');
  2025. background-repeat: no-repeat;
  2026. background-size: 100% 100%;
  2027. width: 26rem;
  2028. padding-bottom: 13px;
  2029. // height: 10rem;
  2030. color: #fff;
  2031. .marker-title {
  2032. margin: 0 auto;
  2033. line-height: 50px;
  2034. }
  2035. .marker-content {
  2036. display: flex;
  2037. justify-content: space-between;
  2038. padding: 0 20px 0 20px;
  2039. .marker-span {
  2040. display: block;
  2041. }
  2042. p {
  2043. text-align: left;
  2044. font-size: 12px;
  2045. margin: 0;
  2046. line-height: 18px;
  2047. }
  2048. }
  2049. .imgList {
  2050. display: block;
  2051. text-align: left;
  2052. padding: 0 20px;
  2053. .marker-span {
  2054. display: block;
  2055. }
  2056. .marker-imgs {
  2057. display: block;
  2058. line-height: 18px !important;
  2059. width: 376px;
  2060. overflow: auto;
  2061. img {
  2062. width: 40px;
  2063. height: 40px;
  2064. margin: 0 4px;
  2065. cursor: pointer;
  2066. }
  2067. }
  2068. .marker-imgs::-webkit-scrollbar {
  2069. background: transparent;
  2070. opacity: 0.6px;
  2071. width: 10px;
  2072. height: 8px;
  2073. }
  2074. .marker-imgs::-webkit-scrollbar-thumb {
  2075. background: rgba($color: #07a2eb8e, $alpha: 0.6);
  2076. border-radius: 20px;
  2077. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  2078. }
  2079. .marker-imgs::-webkit-scrollbar-track {
  2080. /*滚动条里面轨道*/
  2081. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  2082. border-radius: 10px;
  2083. background: transparent;
  2084. }
  2085. }
  2086. }
  2087. /deep/ .amap-marker-label {
  2088. border: 0;
  2089. background-color: transparent;
  2090. }
  2091. #mask {
  2092. width: 100%;
  2093. height: 100vh;
  2094. box-shadow: inset 0px 0px 10vw 8vw rgba(0, 10, 34, 0.54);
  2095. position: fixed;
  2096. left: 0;
  2097. right: 0;
  2098. bottom: 0;
  2099. top: 0;
  2100. pointer-events: none;
  2101. }
  2102. @keyframes imageAnimation_32630606 {
  2103. 0% {
  2104. // opacity: 0;
  2105. transform: none;
  2106. }
  2107. 34% {
  2108. // opacity: 1;
  2109. transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1)
  2110. translate3d(34vw, 0px, 0px);
  2111. }
  2112. 67% {
  2113. // opacity: 1;
  2114. transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1)
  2115. translate3d(67vw, 0px, 0px);
  2116. }
  2117. 100% {
  2118. // opacity: 0;
  2119. transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1)
  2120. translate3d(160vw, 0px, 0px);
  2121. }
  2122. }
  2123. .yun-wrap {
  2124. position: fixed;
  2125. left: 0;
  2126. top: 350px;
  2127. width: 100vw;
  2128. pointer-events: none;
  2129. }
  2130. .yun {
  2131. position: fixed;
  2132. left: -500px;
  2133. animation-name: imageAnimation_32630606;
  2134. animation-iteration-count: infinite;
  2135. animation-timing-function: linear;
  2136. animation-duration: 110s;
  2137. animation-delay: 0s;
  2138. -webkit-user-drag: none;
  2139. filter: none;
  2140. pointer-events: none;
  2141. }
  2142. .yun2 {
  2143. bottom: 20px;
  2144. animation-duration: 90s;
  2145. animation-delay: 10s;
  2146. }
  2147. .yun3 {
  2148. top: 100px;
  2149. animation-duration: 120s;
  2150. animation-delay: 15s;
  2151. }
  2152. /deep/ .label-treecomp {
  2153. position: relative;
  2154. background-color: #05dfff;
  2155. color: #fff;
  2156. padding: 6px 10px;
  2157. border-radius: 8px;
  2158. font-size: 14px;
  2159. text-align: center;
  2160. &::before {
  2161. position: absolute;
  2162. top: 26px;
  2163. left: 42%;
  2164. content: '';
  2165. width: 0px;
  2166. height: 0px;
  2167. border: 6px solid transparent;
  2168. border-top-color: #05dfff;
  2169. }
  2170. .smallH {
  2171. position: absolute;
  2172. top: 34px;
  2173. z-index: 99;
  2174. display: block;
  2175. color: #05dfff;
  2176. text-align: center;
  2177. font-size: 14px;
  2178. // left: 38%;
  2179. left: 0;
  2180. width: 100%;
  2181. }
  2182. }
  2183. </style>