|
@@ -3,7 +3,7 @@
|
|
* @Author: wangcc
|
|
* @Author: wangcc
|
|
* @Date: 2022-10-19 09:32:46
|
|
* @Date: 2022-10-19 09:32:46
|
|
* @LastEditors: wangcc
|
|
* @LastEditors: wangcc
|
|
- * @LastEditTime: 2022-11-02 14:24:57
|
|
|
|
|
|
+ * @LastEditTime: 2022-11-03 10:10:26
|
|
* @FilePath: \castgroup_bigscreen\src\components\amapPow.vue
|
|
* @FilePath: \castgroup_bigscreen\src\components\amapPow.vue
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
* @Copyright: Copyright (c) 2016~2022 by wangcc, All Rights Reserved.
|
|
-->
|
|
-->
|
|
@@ -40,7 +40,8 @@ import {
|
|
farmInfo,
|
|
farmInfo,
|
|
smallClassDetail,
|
|
smallClassDetail,
|
|
treePlant,
|
|
treePlant,
|
|
- projectList
|
|
|
|
|
|
+ projectList,
|
|
|
|
+ getProjectIcon
|
|
} from '@/service/index.js';
|
|
} from '@/service/index.js';
|
|
import axios from 'axios';
|
|
import axios from 'axios';
|
|
export default {
|
|
export default {
|
|
@@ -107,7 +108,8 @@ export default {
|
|
// 项目小班边界
|
|
// 项目小班边界
|
|
smallClassProject: [],
|
|
smallClassProject: [],
|
|
// 项目小班红点转边界图
|
|
// 项目小班红点转边界图
|
|
- projectPolygonArr: []
|
|
|
|
|
|
+ projectPolygonArr: [],
|
|
|
|
+ projectIcon:''
|
|
};
|
|
};
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -459,8 +461,8 @@ export default {
|
|
cursor: 'pointer',
|
|
cursor: 'pointer',
|
|
angle: 2,
|
|
angle: 2,
|
|
style: {
|
|
style: {
|
|
- width: '5px',
|
|
|
|
- height: '5px',
|
|
|
|
|
|
+ width: '2px',
|
|
|
|
+ height: '2px',
|
|
'border-radius': '50%',
|
|
'border-radius': '50%',
|
|
'border-width': 0,
|
|
'border-width': 0,
|
|
'text-align': 'center',
|
|
'text-align': 'center',
|
|
@@ -509,11 +511,6 @@ export default {
|
|
_this.setMapLabel(detail);
|
|
_this.setMapLabel(detail);
|
|
} else if (this.leftPage == 'treeSpecies') {
|
|
} else if (this.leftPage == 'treeSpecies') {
|
|
this.addTreeSpeciesPolygon(detail);
|
|
this.addTreeSpeciesPolygon(detail);
|
|
- // this.forestMarker.setLabel({
|
|
|
|
- // direction: 'top',
|
|
|
|
- // offset: new AMap.Pixel(0, 8), //设置文本标注偏移量
|
|
|
|
- // content: `<div class="label-treecomp">${item.treeComp}<span class="smallH">${item.smallNumber}</span></div>` //设置文本标注内容
|
|
|
|
- // });
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -530,6 +527,7 @@ export default {
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
this.getTreePlant();
|
|
this.getTreePlant();
|
|
|
|
+ this.getIcon()
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
this.initAMap();
|
|
this.initAMap();
|
|
@@ -543,6 +541,13 @@ export default {
|
|
'changeSelectStreet',
|
|
'changeSelectStreet',
|
|
'changeSelectAddr'
|
|
'changeSelectAddr'
|
|
]),
|
|
]),
|
|
|
|
+ getIcon(){
|
|
|
|
+ getProjectIcon('project_icon').then(res =>{
|
|
|
|
+ if (res.code == 200) {
|
|
|
|
+ this.projectIcon = res.data[0].dictValue
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
setMapLabel(val) {
|
|
setMapLabel(val) {
|
|
let _this = this;
|
|
let _this = this;
|
|
let lanLatArr = [val.longitude, val.latitude];
|
|
let lanLatArr = [val.longitude, val.latitude];
|
|
@@ -781,8 +786,8 @@ export default {
|
|
map: that.map
|
|
map: that.map
|
|
});
|
|
});
|
|
//当前聚焦的区域
|
|
//当前聚焦的区域
|
|
|
|
+ // this.$tipMarkerContent = $('<div class="tipMarker top"></div>');
|
|
this.$tipMarkerContent = $('<div class="tipMarker top"></div>');
|
|
this.$tipMarkerContent = $('<div class="tipMarker top"></div>');
|
|
- // eslint-disable-next-line no-undef
|
|
|
|
this.tipMarker = new AMap.Marker({
|
|
this.tipMarker = new AMap.Marker({
|
|
content: this.$tipMarkerContent.get(0),
|
|
content: this.$tipMarkerContent.get(0),
|
|
offset: new AMap.Pixel(0, 0),
|
|
offset: new AMap.Pixel(0, 0),
|
|
@@ -1150,7 +1155,7 @@ export default {
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
let infoIcon = new AMap.Icon({
|
|
let infoIcon = new AMap.Icon({
|
|
size: new AMap.Size(20, 25), // 图标尺寸
|
|
size: new AMap.Size(20, 25), // 图标尺寸
|
|
- image: require('@/assets/img/infoMarker.png'),
|
|
|
|
|
|
+ image: this.projectIcon,
|
|
imageSize: new AMap.Size(20, 25) // 根据所设置的大小拉伸或压缩图片
|
|
imageSize: new AMap.Size(20, 25) // 根据所设置的大小拉伸或压缩图片
|
|
});
|
|
});
|
|
res.rows.forEach((element) => {
|
|
res.rows.forEach((element) => {
|