|
@@ -72,7 +72,7 @@
|
|
|
<!-- 地图 -->
|
|
|
<supermapDialog1 ref="supermapDialog1" style="position: absolute; top:0;left: 0;"
|
|
|
:mapDiv="'forestWarmSuperMap'"
|
|
|
- :mapSite="{zoom:16,doubleClickZoom:true,dragging:true,scrollWheelZoom:true}" :codes="['9fa5']"
|
|
|
+ :mapSite="{doubleClickZoom:true,dragging:true,scrollWheelZoom:true}" :codes="['9fa5']"
|
|
|
:isSideBySide="false" @preview="preview" />
|
|
|
<!-- 地图end -->
|
|
|
</div>
|
|
@@ -3183,11 +3183,14 @@ export default {
|
|
|
markersMapList.push(markersMap)
|
|
|
}
|
|
|
setTimeout(() => {
|
|
|
- that.$refs.supermapDialog1.dropLocation10(res.data.catalogue.latitude, res.data.catalogue.longitude)
|
|
|
- that.$refs.supermapDialog1.clearM(false)
|
|
|
- that.$refs.supermapDialog1.clearM(true)
|
|
|
- that.$refs.supermapDialog1.setMarkersRadius(markersMapList)
|
|
|
- }, 2000)
|
|
|
+ that.$refs.supermapDialog1.dropLocation10(
|
|
|
+ res.data.catalogue.latitude,
|
|
|
+ res.data.catalogue.longitude
|
|
|
+ );
|
|
|
+ that.$refs.supermapDialog1.clearM(false);
|
|
|
+ that.$refs.supermapDialog1.clearM(true);
|
|
|
+ that.$refs.supermapDialog1.setMarkersRadius(markersMapList);
|
|
|
+ }, 2000);
|
|
|
})
|
|
|
},
|
|
|
refreshEvent(eventCode) {
|
|
@@ -3280,11 +3283,14 @@ export default {
|
|
|
markersMapList.push(markersMap)
|
|
|
}
|
|
|
setTimeout(() => {
|
|
|
- that.$refs.supermapDialog1.clearM(false)
|
|
|
- that.$refs.supermapDialog1.clearM(true)
|
|
|
- that.$refs.supermapDialog1.setMarkersRadius(markersMapList)
|
|
|
- that.$refs.supermapDialog1.dropLocation10(res.data.catalogue.latitude, res.data.catalogue.longitude)
|
|
|
- }, 2000)
|
|
|
+ that.$refs.supermapDialog1.dropLocation10(
|
|
|
+ res.data.catalogue.latitude,
|
|
|
+ res.data.catalogue.longitude
|
|
|
+ );
|
|
|
+ that.$refs.supermapDialog1.clearM(false);
|
|
|
+ that.$refs.supermapDialog1.clearM(true);
|
|
|
+ that.$refs.supermapDialog1.setMarkersRadius(markersMapList);
|
|
|
+ }, 2000);
|
|
|
})
|
|
|
},
|
|
|
refreshEventDialog(eventCode) {
|