|
@@ -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-11 09:35:29
|
|
|
|
|
|
+ * @LastEditTime: 2022-11-11 14:01: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.
|
|
-->
|
|
-->
|
|
@@ -159,7 +159,6 @@ export default {
|
|
this.townPolygonArr ||
|
|
this.townPolygonArr ||
|
|
this.smallClassPolygonArr
|
|
this.smallClassPolygonArr
|
|
) {
|
|
) {
|
|
-
|
|
|
|
this.map.remove(this.polygon);
|
|
this.map.remove(this.polygon);
|
|
this.map.remove(this.streetMarkerArr);
|
|
this.map.remove(this.streetMarkerArr);
|
|
this.map.remove(this.townPolygons);
|
|
this.map.remove(this.townPolygons);
|
|
@@ -168,7 +167,7 @@ export default {
|
|
this.map.remove(this.forestMarkerArr);
|
|
this.map.remove(this.forestMarkerArr);
|
|
this.map.remove(this.townPolygonArr);
|
|
this.map.remove(this.townPolygonArr);
|
|
this.map.remove(this.smallClassPolygonArr);
|
|
this.map.remove(this.smallClassPolygonArr);
|
|
- this.townPolygons = []
|
|
|
|
|
|
+ this.townPolygons = [];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -257,7 +256,8 @@ export default {
|
|
}
|
|
}
|
|
this.setMapLabel(val);
|
|
this.setMapLabel(val);
|
|
if (
|
|
if (
|
|
- this.$store.state.addr.mapLevel != 'street'
|
|
|
|
|
|
+ this.$store.state.addr.mapLevel == 'province' ||
|
|
|
|
+ this.$store.state.addr.mapLevel == 'city' ||(this.$store.state.addr.mapLevel == 'district'&& this.$store.state.addr.selectCity.prop == '1')
|
|
) {
|
|
) {
|
|
if (val.countyCode) {
|
|
if (val.countyCode) {
|
|
// this.switch2AreaNode(val.countyCode.substring(0, 6));
|
|
// this.switch2AreaNode(val.countyCode.substring(0, 6));
|
|
@@ -278,6 +278,7 @@ export default {
|
|
name: selectCity,
|
|
name: selectCity,
|
|
mapLevel: 'city'
|
|
mapLevel: 'city'
|
|
});
|
|
});
|
|
|
|
+
|
|
if (val.cityCode) {
|
|
if (val.cityCode) {
|
|
this.changeSelectCity({
|
|
this.changeSelectCity({
|
|
value: val.cityCode,
|
|
value: val.cityCode,
|
|
@@ -677,22 +678,25 @@ export default {
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>';
|
|
'</div>';
|
|
|
|
+ let infoIcon = new AMap.Icon({
|
|
|
|
+ size: new AMap.Size(40, 25), // 图标尺寸
|
|
|
|
+ image: require('@/assets/img/small-marker.png'),
|
|
|
|
+ imageSize: new AMap.Size(40, 25) // 根据所设置的大小拉伸或压缩图片
|
|
|
|
+ });
|
|
this.smallMarker = new AMap.Marker({
|
|
this.smallMarker = new AMap.Marker({
|
|
map: this.map,
|
|
map: this.map,
|
|
position: lanLatArr,
|
|
position: lanLatArr,
|
|
- icon: require('@/assets/img/small-marker.png'),
|
|
|
|
|
|
+ icon: infoIcon,
|
|
anchor: 'bottom-center',
|
|
anchor: 'bottom-center',
|
|
- offset: new AMap.Pixel(0, 0),
|
|
|
|
|
|
+ offset: new AMap.Pixel(0, -6),
|
|
zIndex: 9999
|
|
zIndex: 9999
|
|
});
|
|
});
|
|
this.smallMarker.setLabel({
|
|
this.smallMarker.setLabel({
|
|
direction: 'right',
|
|
direction: 'right',
|
|
- offset: new AMap.Pixel(-230, -160), //设置文本标注偏移量
|
|
|
|
|
|
+ offset: new AMap.Pixel(-230, -150), //设置文本标注偏移量
|
|
content: smallLabel //设置文本标注内容
|
|
content: smallLabel //设置文本标注内容
|
|
});
|
|
});
|
|
- if (
|
|
|
|
- this.$store.state.addr.mapLevel == 'street'
|
|
|
|
- ) {
|
|
|
|
|
|
+ if (this.$store.state.addr.mapLevel == 'street') {
|
|
this.map.setFitView(this.smallMarker, false, false, 12);
|
|
this.map.setFitView(this.smallMarker, false, false, 12);
|
|
}
|
|
}
|
|
this.smallMarkers.push(_this.smallMarker);
|
|
this.smallMarkers.push(_this.smallMarker);
|
|
@@ -959,13 +963,18 @@ export default {
|
|
// this.getSmallClass();
|
|
// this.getSmallClass();
|
|
let _this = this;
|
|
let _this = this;
|
|
//更新地图视野
|
|
//更新地图视野
|
|
- console.log(this.$store.state.addr.selectCity.prop);
|
|
|
|
- console.log(this.$store.state.addr.mapLevel);
|
|
|
|
- if ((this.$store.state.addr.selectCity.prop == '1' && this.$store.state.addr.mapLevel != 'street') || this.$store.state.addr.mapLevel == 'province') {
|
|
|
|
|
|
+ if (
|
|
|
|
+ (this.$store.state.addr.selectCity.prop == '1' &&
|
|
|
|
+ this.$store.state.addr.mapLevel != 'street') ||
|
|
|
|
+ this.$store.state.addr.mapLevel == 'province'
|
|
|
|
+ ) {
|
|
this.map.setBounds(areaNode.getBounds(), null, null, false);
|
|
this.map.setBounds(areaNode.getBounds(), null, null, false);
|
|
- } else if (this.$store.state.addr.selectCity.prop == '2' && this.$store.state.addr.mapLevel != 'province') {
|
|
|
|
|
|
+ } else if (
|
|
|
|
+ this.$store.state.addr.selectCity.prop == '2' &&
|
|
|
|
+ this.$store.state.addr.mapLevel != 'province'
|
|
|
|
+ ) {
|
|
this.map.setFitView(this.smallMarker, false, false, 14);
|
|
this.map.setFitView(this.smallMarker, false, false, 14);
|
|
- }
|
|
|
|
|
|
+ }
|
|
// 加载相关标识
|
|
// 加载相关标识
|
|
this.mapPolygon();
|
|
this.mapPolygon();
|
|
//清除已有的绘制内容
|
|
//清除已有的绘制内容
|
|
@@ -1033,8 +1042,10 @@ export default {
|
|
}
|
|
}
|
|
//查询乡镇 标识
|
|
//查询乡镇 标识
|
|
if (areaPolygon.properties.level == 'district') {
|
|
if (areaPolygon.properties.level == 'district') {
|
|
- console.log(this.townPolygons);
|
|
|
|
- if (this.$store.state.addr.mapLevel != 'street' && this.townPolygons.length == 0) {
|
|
|
|
|
|
+ if (
|
|
|
|
+ this.$store.state.addr.mapLevel != 'street' &&
|
|
|
|
+ this.townPolygons.length == 0
|
|
|
|
+ ) {
|
|
this.getrjx(areaPolygon.properties.name);
|
|
this.getrjx(areaPolygon.properties.name);
|
|
}
|
|
}
|
|
AMap.plugin(['AMap.DistrictSearch'], function () {
|
|
AMap.plugin(['AMap.DistrictSearch'], function () {
|
|
@@ -1121,7 +1132,6 @@ export default {
|
|
this.currentAreaNode = areaNode;
|
|
this.currentAreaNode = areaNode;
|
|
//设置当前使用的定位用节点
|
|
//设置当前使用的定位用节点
|
|
this.districtExplorer.setAreaNodesForLocating([this.currentAreaNode]);
|
|
this.districtExplorer.setAreaNodesForLocating([this.currentAreaNode]);
|
|
-
|
|
|
|
this.refreshAreaNode(areaNode);
|
|
this.refreshAreaNode(areaNode);
|
|
if (callback) {
|
|
if (callback) {
|
|
callback(null, areaNode);
|
|
callback(null, areaNode);
|
|
@@ -2184,17 +2194,20 @@ export default {
|
|
|
|
|
|
34% {
|
|
34% {
|
|
// opacity: 1;
|
|
// opacity: 1;
|
|
- transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) translate3d(34vw, 0px, 0px);
|
|
|
|
|
|
+ transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1)
|
|
|
|
+ translate3d(34vw, 0px, 0px);
|
|
}
|
|
}
|
|
|
|
|
|
67% {
|
|
67% {
|
|
// opacity: 1;
|
|
// opacity: 1;
|
|
- transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) translate3d(67vw, 0px, 0px);
|
|
|
|
|
|
+ transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1)
|
|
|
|
+ translate3d(67vw, 0px, 0px);
|
|
}
|
|
}
|
|
|
|
|
|
100% {
|
|
100% {
|
|
// opacity: 0;
|
|
// opacity: 0;
|
|
- transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) translate3d(160vw, 0px, 0px);
|
|
|
|
|
|
+ transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1)
|
|
|
|
+ translate3d(160vw, 0px, 0px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|