amapPow.vue 68 KB

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