amapnow.vue 58 KB

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