|
@@ -28,10 +28,10 @@ import CityGis from "@/unit/map/CityGis.Bridge";
|
|
|
import {previewMapBridge} from "@/unit/map/map";
|
|
|
import {nextTick, onBeforeUnmount, onMounted} from 'vue'
|
|
|
import {
|
|
|
- AddPreviewSingleLayer, clearPreviewAllLayerMap, DrawPreviewMap, MapPreviewClickAll
|
|
|
+ AddPreviewSingleLayer, clearPreviewAllLayerMap, DrawMap, DrawPreviewMap, MapPreviewClickAll
|
|
|
} from "@/unit/map/AddLayer";
|
|
|
import {useMapStore} from "@/pinia/useStore";
|
|
|
-import {showMessage} from "@/unit/element-ui/tip";
|
|
|
+import {showConfirmOrExit, showMessage} from "@/unit/element-ui/tip";
|
|
|
|
|
|
let bridge
|
|
|
export default {
|
|
@@ -39,32 +39,60 @@ export default {
|
|
|
setup(props,{emit}) {
|
|
|
const mapStore = useMapStore()
|
|
|
function handleClose() {
|
|
|
+ if(!props.currentDialog){
|
|
|
+ mapStore.changeCurrentDrawContent(null);
|
|
|
+ mapStore.changeCurrentDrawCalculation(null);
|
|
|
+ }
|
|
|
emit('update:dialogVisible',false)
|
|
|
}
|
|
|
function saveExtent() {
|
|
|
- debugger
|
|
|
if(!mapStore.currentDrawContent){
|
|
|
showMessage({
|
|
|
tpe:'warning',
|
|
|
message:'未完成范围选择'
|
|
|
})
|
|
|
+ }else if(!isAreaQualified(300000,mapStore.currentDrawCalculation)){
|
|
|
+ showConfirmOrExit(() => {
|
|
|
+ DrawPreviewMap({
|
|
|
+ type:'rectangle',
|
|
|
+ hasZ:false
|
|
|
+ })
|
|
|
+ },() => {
|
|
|
+ mapStore.changeCurrentDrawContent(null);
|
|
|
+ mapStore.changeCurrentDrawCalculation(null);
|
|
|
+ DrawPreviewMap({
|
|
|
+ type:'rectangle',
|
|
|
+ hasZ:false
|
|
|
+ })
|
|
|
+ },'选中范围超出指定面积0.3平方千米,是否重新绘制?','系统提示')
|
|
|
+
|
|
|
}else{
|
|
|
emit('update:dialogVisible',false)
|
|
|
}
|
|
|
}
|
|
|
+ function isAreaQualified(num,string){
|
|
|
+ let actualNum = string.split('.')[0];
|
|
|
+ if(string.includes("千")){
|
|
|
+ actualNum = actualNum*1000*1000
|
|
|
+ }
|
|
|
+ if(actualNum > num *1){
|
|
|
+ return false
|
|
|
+ }else{
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ }
|
|
|
onBeforeUnmount(()=>{
|
|
|
clearPreviewAllLayerMap()
|
|
|
previewMapBridge.bridgeContent= bridge= {}
|
|
|
})
|
|
|
onMounted(() => {
|
|
|
- // console.log(111111111111)
|
|
|
//加载地图控件
|
|
|
debugger
|
|
|
nextTick(() => {
|
|
|
previewMapBridge.bridgeContent = bridge = new CityGis.Bridge({
|
|
|
id: "i_map2",
|
|
|
- url: 'https://cimweb.zjw.sh.cegn.cn:2007/VUE-Map-Tool-Widget/#/jk_map?theme=light', //建科发布
|
|
|
- //url: 'http://localhost:8081/#/jk_map?theme=light',
|
|
|
+ //url: 'https://cimweb.zjw.sh.cegn.cn:2007/VUE-Map-Tool-Widget/#/jk_map?theme=light', //建科发布
|
|
|
+ url: 'http://localhost:8081/#/jk_map?theme=light',
|
|
|
onReady: function () {
|
|
|
// console.log("地图创建完成");
|
|
|
}
|
|
@@ -82,8 +110,8 @@ export default {
|
|
|
MapPreviewClickAll();
|
|
|
}else{
|
|
|
DrawPreviewMap({
|
|
|
- type:"polygon",
|
|
|
- hasZ:false
|
|
|
+ type:"rectangle",
|
|
|
+ hasZ:false,
|
|
|
})
|
|
|
}
|
|
|
bridge.addEventListener(function (arg) {
|
|
@@ -92,17 +120,8 @@ export default {
|
|
|
case 'DrawComplete':
|
|
|
mapStore.changeCurrentDrawContent(arg.data.geometry)
|
|
|
break;
|
|
|
- case 'MapIsReady':
|
|
|
- // AddPreviewSingleLayer({
|
|
|
- // type:props.currentDialog.SERVICE_TYPE,
|
|
|
- // id:props.currentDialog.S_CODE,
|
|
|
- // visible:true,
|
|
|
- // url:props.currentDialog.ADDRESS,
|
|
|
- // opacity:1,
|
|
|
- // title:props.currentDialog.NAME
|
|
|
- //
|
|
|
- //
|
|
|
- // })
|
|
|
+ case 'Calculation':
|
|
|
+ mapStore.changeCurrentDrawCalculation(arg.data.result)
|
|
|
break;
|
|
|
}
|
|
|
// console.log(arg.action +":"+ JSON.stringify(arg.data));
|