amapPow.vue 71 KB

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