@@ -189,16 +219,25 @@
getLabel('measure_name', measure_name)
}}
@@ -338,15 +385,18 @@
diff --git a/src/views/demo/system/geoservermanagement/clound/clound.data.ts b/src/views/demo/system/geoservermanagement/clound/clound.data.ts
index 2bdca197..e26e7917 100644
--- a/src/views/demo/system/geoservermanagement/clound/clound.data.ts
+++ b/src/views/demo/system/geoservermanagement/clound/clound.data.ts
@@ -20,23 +20,23 @@ export const indexColumns: BasicColumn[] = [
{
title: '空间参考',
dataIndex: 'spatialRef',
- width: 70,
+ width: 100,
},
{
title: '数据源类型',
dataIndex: 'dataSourceType',
ifShow: false,
- width: 90,
+ width: 100,
},
{
title: '数据类型',
dataIndex: 'dataType',
- width: 50,
+ width: 100,
},
{
title: '数据表名',
dataIndex: 'dataTable',
- width: 120,
+ width: 150,
},
{
title: 'shp或者xls地址',
@@ -53,12 +53,12 @@ export const indexColumns: BasicColumn[] = [
{
title: '创建时间',
dataIndex: 'createTime',
- width: 120,
+ width: 150,
},
{
title: '修改时间',
dataIndex: 'updateTime',
- width: 120,
+ width: 150,
},
];
@@ -67,7 +67,7 @@ export const indexSearchFormSchema: FormSchema[] = [
field: 'SererName',
label: '服务名称',
component: 'Input',
- colProps: { span: 8 },
+ colProps: { span: 12 },
},
];
diff --git a/src/views/demo/system/geoservermanagement/clound/mapComponent.vue b/src/views/demo/system/geoservermanagement/clound/mapComponent.vue
index 92fcf163..d5599cd3 100644
--- a/src/views/demo/system/geoservermanagement/clound/mapComponent.vue
+++ b/src/views/demo/system/geoservermanagement/clound/mapComponent.vue
@@ -175,9 +175,10 @@
// console.log(chooseRow);
getGeomData({ dataTable: chooseRow.dataTable })
.then((res) => {
- let st = res.slice(6, -1);
+ let st: any = 'POINT(, )'.slice(6, -1);
st = st.split(' ');
handlerLocation([st[0], st[1]], 11);
+ // handlerLocation([118.32113719388846, 35.64528587987562], 11);
raster(chooseRow);
})
.catch((error) => {
@@ -195,6 +196,8 @@
'&styles=&bbox={bbox-epsg-3857}&width=256&height=256&srs=' +
chooseRow.spatialRef +
'&format=image/png&TRANSPARENT=TRUE',
+ // 'http://192.168.10.131:8080/geoserver/my_workspace/wms?service=WMS&version=1.1.0&request=GetMap&layers=my_workspace:parse_shpinfo_text3&styles=&bbox=118.32113719388846%2C35.64528587987562%2C118.89333296872105%2C36.17725393199594&width=256&height=256&srs=EPSG:4326&format=image/png&TRANSPARENT=TRUE&exceptions=application%2Fvnd.ogc.se_inimage',
+ // 'http://175.27.168.120:8080/geoserver/yinanxian/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&FORMAT=image%2Fjpeg&TRANSPARENT=true&LAYERS=yinanxian%3Ayingxiang_01&exceptions=application%2Fvnd.ogc.se_inimage&SRS=EPSG%3A4548&STYLES=&WIDTH=529&HEIGHT=769&BBOX=607366.3276808303%2C3919435.438766631%2C612405.5241015075%2C3926765.179014889',
],
tileSize: 256,
});
diff --git a/src/views/demo/system/geoservermanagement/index.vue b/src/views/demo/system/geoservermanagement/index.vue
index 09ad692d..98bc433a 100644
--- a/src/views/demo/system/geoservermanagement/index.vue
+++ b/src/views/demo/system/geoservermanagement/index.vue
@@ -136,7 +136,7 @@