|
@@ -2,8 +2,8 @@
|
|
* @Description:
|
|
* @Description:
|
|
* @Author: wangcc
|
|
* @Author: wangcc
|
|
* @Date: 2022-10-19 09:32:46
|
|
* @Date: 2022-10-19 09:32:46
|
|
- * @LastEditors: wangcc
|
|
|
|
- * @LastEditTime: 2022-11-09 17:54:57
|
|
|
|
|
|
+ * @LastEditors: wangcc 1053578651@qq.com
|
|
|
|
+ * @LastEditTime: 2022-11-10 20:21:49
|
|
* @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.
|
|
-->
|
|
-->
|
|
@@ -962,10 +962,11 @@ export default {
|
|
// this.getSmallClass();
|
|
// this.getSmallClass();
|
|
let _this = this;
|
|
let _this = this;
|
|
//更新地图视野
|
|
//更新地图视野
|
|
- if (this.$store.state.addr.mapLevel == 'city' ||
|
|
|
|
- this.$store.state.addr.mapLevel == 'province') {
|
|
|
|
|
|
+ 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') {
|
|
this.map.setBounds(areaNode.getBounds(), null, null, false);
|
|
this.map.setBounds(areaNode.getBounds(), null, null, false);
|
|
- }else{
|
|
|
|
|
|
+ } 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);
|
|
}
|
|
}
|
|
// 加载相关标识
|
|
// 加载相关标识
|
|
@@ -1266,7 +1267,7 @@ export default {
|
|
|
|
|
|
this.boundaryPolygon.on('click', (e) => {
|
|
this.boundaryPolygon.on('click', (e) => {
|
|
let centerLanLatArr = [e.lnglat.lng, e.lnglat.lat];
|
|
let centerLanLatArr = [e.lnglat.lng, e.lnglat.lat];
|
|
- // that.map.remove(that.townPolygons);
|
|
|
|
|
|
+ that.map.remove(that.townPolygons);
|
|
// that.districtExplorer.clearFeaturePolygons();
|
|
// that.districtExplorer.clearFeaturePolygons();
|
|
let valCode = element.properties.XIANG;
|
|
let valCode = element.properties.XIANG;
|
|
let areaId = '';
|
|
let areaId = '';
|
|
@@ -1279,7 +1280,8 @@ export default {
|
|
this.changeSelectStreet({
|
|
this.changeSelectStreet({
|
|
value: valCode,
|
|
value: valCode,
|
|
label: label,
|
|
label: label,
|
|
- areaId: areaId
|
|
|
|
|
|
+ areaId: areaId,
|
|
|
|
+ prop: '1'
|
|
});
|
|
});
|
|
this.changeSelectAddr('street');
|
|
this.changeSelectAddr('street');
|
|
this.$store.dispatch('searchArea', {
|
|
this.$store.dispatch('searchArea', {
|
|
@@ -1287,14 +1289,14 @@ export default {
|
|
name: label,
|
|
name: label,
|
|
mapLevel: 'street'
|
|
mapLevel: 'street'
|
|
});
|
|
});
|
|
- // let townPolygon = new AMap.Polygon({
|
|
|
|
- // map: that.map,
|
|
|
|
- // path: element.geometry.coordinates,
|
|
|
|
- // strokeColor: 'yellow',
|
|
|
|
- // strokeWeight: 3,
|
|
|
|
- // fillOpacity: 0
|
|
|
|
- // });
|
|
|
|
- // this.townPolygonArr.push(townPolygon);
|
|
|
|
|
|
+ let townPolygon = new AMap.Polygon({
|
|
|
|
+ map: that.map,
|
|
|
|
+ path: element.geometry.coordinates,
|
|
|
|
+ strokeColor: 'yellow',
|
|
|
|
+ strokeWeight: 3,
|
|
|
|
+ fillOpacity: 0
|
|
|
|
+ });
|
|
|
|
+ this.townPolygonArr.push(townPolygon);
|
|
that.map.setZoomAndCenter(14, centerLanLatArr, false, 13);
|
|
that.map.setZoomAndCenter(14, centerLanLatArr, false, 13);
|
|
});
|
|
});
|
|
that.boundaryPolygon.on('rightclick', function (e) {
|
|
that.boundaryPolygon.on('rightclick', function (e) {
|
|
@@ -2001,10 +2003,12 @@ export default {
|
|
#container {
|
|
#container {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100vh;
|
|
height: 100vh;
|
|
|
|
+
|
|
/deep/ .tdt-pane {
|
|
/deep/ .tdt-pane {
|
|
z-index: auto;
|
|
z-index: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
/deep/ .amap-marker-content {
|
|
/deep/ .amap-marker-content {
|
|
.tipMarker {
|
|
.tipMarker {
|
|
color: #555;
|
|
color: #555;
|
|
@@ -2014,6 +2018,7 @@ export default {
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
|
+
|
|
&:before,
|
|
&:before,
|
|
&:after {
|
|
&:after {
|
|
content: '';
|
|
content: '';
|
|
@@ -2025,8 +2030,10 @@ export default {
|
|
border: solid transparent;
|
|
border: solid transparent;
|
|
border-width: 5px 5px;
|
|
border-width: 5px 5px;
|
|
}
|
|
}
|
|
|
|
+
|
|
&.top {
|
|
&.top {
|
|
transform: translate(-50%, -110%);
|
|
transform: translate(-50%, -110%);
|
|
|
|
+
|
|
&:before,
|
|
&:before,
|
|
&:after {
|
|
&:after {
|
|
bottom: -9px;
|
|
bottom: -9px;
|
|
@@ -2034,6 +2041,7 @@ export default {
|
|
right: 0;
|
|
right: 0;
|
|
border-top-color: rgba(255, 254, 239, 0.8);
|
|
border-top-color: rgba(255, 254, 239, 0.8);
|
|
}
|
|
}
|
|
|
|
+
|
|
&:before {
|
|
&:before {
|
|
bottom: -10px;
|
|
bottom: -10px;
|
|
border-top-color: #7e7e7e;
|
|
border-top-color: #7e7e7e;
|
|
@@ -2041,14 +2049,17 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
/deep/ .amap-logo,
|
|
/deep/ .amap-logo,
|
|
.amap-copyright {
|
|
.amap-copyright {
|
|
display: block !important;
|
|
display: block !important;
|
|
visibility: inherit !important;
|
|
visibility: inherit !important;
|
|
}
|
|
}
|
|
|
|
+
|
|
/deep/ .amap-icon {
|
|
/deep/ .amap-icon {
|
|
overflow: unset !important;
|
|
overflow: unset !important;
|
|
}
|
|
}
|
|
|
|
+
|
|
/deep/ .info-small {
|
|
/deep/ .info-small {
|
|
background-image: url('../assets/img/small-label.png');
|
|
background-image: url('../assets/img/small-label.png');
|
|
background-repeat: no-repeat;
|
|
background-repeat: no-repeat;
|
|
@@ -2056,12 +2067,15 @@ export default {
|
|
width: 18rem;
|
|
width: 18rem;
|
|
// height: 10rem;
|
|
// height: 10rem;
|
|
color: #fff;
|
|
color: #fff;
|
|
|
|
+
|
|
.marker-title {
|
|
.marker-title {
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
line-height: 30px;
|
|
line-height: 30px;
|
|
}
|
|
}
|
|
|
|
+
|
|
.marker-content {
|
|
.marker-content {
|
|
padding: 0 20px 10px 20px;
|
|
padding: 0 20px 10px 20px;
|
|
|
|
+
|
|
p {
|
|
p {
|
|
text-align: left;
|
|
text-align: left;
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
@@ -2070,6 +2084,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
/deep/ .info-details {
|
|
/deep/ .info-details {
|
|
background-image: url('../assets/img/small-label.png');
|
|
background-image: url('../assets/img/small-label.png');
|
|
background-repeat: no-repeat;
|
|
background-repeat: no-repeat;
|
|
@@ -2078,14 +2093,17 @@ export default {
|
|
padding-bottom: 13px;
|
|
padding-bottom: 13px;
|
|
// height: 10rem;
|
|
// height: 10rem;
|
|
color: #fff;
|
|
color: #fff;
|
|
|
|
+
|
|
.marker-title {
|
|
.marker-title {
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
line-height: 50px;
|
|
line-height: 50px;
|
|
}
|
|
}
|
|
|
|
+
|
|
.marker-content {
|
|
.marker-content {
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
padding: 0 20px 0 20px;
|
|
padding: 0 20px 0 20px;
|
|
|
|
+
|
|
.marker-span {
|
|
.marker-span {
|
|
display: block;
|
|
display: block;
|
|
}
|
|
}
|
|
@@ -2097,18 +2115,22 @@ export default {
|
|
line-height: 18px;
|
|
line-height: 18px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
.imgList {
|
|
.imgList {
|
|
display: block;
|
|
display: block;
|
|
text-align: left;
|
|
text-align: left;
|
|
padding: 0 20px;
|
|
padding: 0 20px;
|
|
|
|
+
|
|
.marker-span {
|
|
.marker-span {
|
|
display: block;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
+
|
|
.marker-imgs {
|
|
.marker-imgs {
|
|
display: block;
|
|
display: block;
|
|
line-height: 18px !important;
|
|
line-height: 18px !important;
|
|
width: 376px;
|
|
width: 376px;
|
|
overflow: auto;
|
|
overflow: auto;
|
|
|
|
+
|
|
img {
|
|
img {
|
|
width: 40px;
|
|
width: 40px;
|
|
height: 40px;
|
|
height: 40px;
|
|
@@ -2116,17 +2138,20 @@ export default {
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
.marker-imgs::-webkit-scrollbar {
|
|
.marker-imgs::-webkit-scrollbar {
|
|
background: transparent;
|
|
background: transparent;
|
|
opacity: 0.6px;
|
|
opacity: 0.6px;
|
|
width: 10px;
|
|
width: 10px;
|
|
height: 8px;
|
|
height: 8px;
|
|
}
|
|
}
|
|
|
|
+
|
|
.marker-imgs::-webkit-scrollbar-thumb {
|
|
.marker-imgs::-webkit-scrollbar-thumb {
|
|
background: rgba($color: #07a2eb8e, $alpha: 0.6);
|
|
background: rgba($color: #07a2eb8e, $alpha: 0.6);
|
|
border-radius: 20px;
|
|
border-radius: 20px;
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
}
|
|
}
|
|
|
|
+
|
|
.marker-imgs::-webkit-scrollbar-track {
|
|
.marker-imgs::-webkit-scrollbar-track {
|
|
/*滚动条里面轨道*/
|
|
/*滚动条里面轨道*/
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
@@ -2152,25 +2177,26 @@ export default {
|
|
top: 0;
|
|
top: 0;
|
|
pointer-events: none;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
+
|
|
@keyframes imageAnimation_32630606 {
|
|
@keyframes imageAnimation_32630606 {
|
|
0% {
|
|
0% {
|
|
// opacity: 0;
|
|
// opacity: 0;
|
|
transform: none;
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
+
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -2181,6 +2207,7 @@ export default {
|
|
width: 100vw;
|
|
width: 100vw;
|
|
pointer-events: none;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
+
|
|
.yun {
|
|
.yun {
|
|
position: fixed;
|
|
position: fixed;
|
|
left: -500px;
|
|
left: -500px;
|
|
@@ -2193,16 +2220,19 @@ export default {
|
|
filter: none;
|
|
filter: none;
|
|
pointer-events: none;
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
+
|
|
.yun2 {
|
|
.yun2 {
|
|
bottom: 20px;
|
|
bottom: 20px;
|
|
animation-duration: 90s;
|
|
animation-duration: 90s;
|
|
animation-delay: 10s;
|
|
animation-delay: 10s;
|
|
}
|
|
}
|
|
|
|
+
|
|
.yun3 {
|
|
.yun3 {
|
|
top: 100px;
|
|
top: 100px;
|
|
animation-duration: 120s;
|
|
animation-duration: 120s;
|
|
animation-delay: 15s;
|
|
animation-delay: 15s;
|
|
}
|
|
}
|
|
|
|
+
|
|
/deep/ .label-treecomp {
|
|
/deep/ .label-treecomp {
|
|
position: relative;
|
|
position: relative;
|
|
background-color: #05dfff;
|
|
background-color: #05dfff;
|
|
@@ -2211,6 +2241,7 @@ export default {
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
text-align: center;
|
|
|
|
+
|
|
&::before {
|
|
&::before {
|
|
position: absolute;
|
|
position: absolute;
|
|
top: 26px;
|
|
top: 26px;
|
|
@@ -2221,6 +2252,7 @@ export default {
|
|
border: 6px solid transparent;
|
|
border: 6px solid transparent;
|
|
border-top-color: #05dfff;
|
|
border-top-color: #05dfff;
|
|
}
|
|
}
|
|
|
|
+
|
|
.smallH {
|
|
.smallH {
|
|
position: absolute;
|
|
position: absolute;
|
|
top: 34px;
|
|
top: 34px;
|