gpt4 book ai didi

javascript - WMS 图层未在所有缩放级别上正确渲染

转载 作者:行者123 更新时间:2023-11-29 16:36:31 26 4
gpt4 key购买 nike

我已经使用 PostGIS v2.4.2 扩展配置了 PostgreSQL v9.5.12 数据库。我使用 GeoServer v2.13.1 将数据库表渲染为 WMS 图层,并使用 Openlayers (v4.6.5) 在 Web 应用程序中将它们可视化。使用的投影是 EPSG:31255

但是,WMS 图层无法在所有缩放级别上正确显示。有时图 block 会被切断(请参见屏幕截图 1),或者并非层中的每个点都会被渲染(请参见屏幕截图 2)。在某些级别上,尤其是在放大时,该图层根本不显示。这些图层在 GeoServer 本身以及将它们添加到 qGIS 时都能正确显示。

我也将这个设置和代码用于其他层,并且工作顺利,但是这些层使用不同的投影(ESPG:4326)。

我该如何解决这个问题?

WMS Example 1截图1(右侧部分轮廓被切除)

WMS Example 2屏幕截图 2(中间的绿点缺失)

编辑:下面是一个代码片段,其中包含 EPSG:31255 的定义,但并未实际将其用于 wmsSource。

    // proj4js custom projection        
proj4.defs("EPSG:31255","+proj=tmerc +lat_0=0 +lon_0=13.33333333333333 +k=1 +x_0=0 +y_0=-5000000 +ellps=bessel +towgs84=577.326,90.129,463.919,5.137,1.474,5.297,2.4232 +units=m +no_defs");
var proj31255 = ol.proj.get('EPSG:31255');
proj31255.setExtent([-115771.3204, 130037.7189, 115359.4571, 408002.5351]);

var wmsSource = new ol.source.TileWMS({
url: geoserver_getcapabilities_url + geoserver_workspace + '/wms?',
params: {
'LAYERS': wms_layer_name
},
serverType: 'geoserver',
//projection: 'EPSG:31255'
});

var wmsLayer = new ol.layer.Tile({
source: wmsSource,
name: 'selected_wms_layer',
visible: true
});

var osmLayer = new ol.layer.Tile({
source: new ol.source.OSM()
});

var view = new ol.View({
center: map_centre,
zoom: initial_zoom_level,
projection: 'EPSG:3857'
});

/** Set-up the map */
var map = new ol.Map({
target: 'map',
layers: [osmLayer, wmsLayer, point_layer],
overlays: [overlay],
view: view,
loadTilesWhileAnimating: true,
loadTilesWhileInteracting: true,
controls: ol.control.defaults().extend([
new ol.control.OverviewMap()
])
});

最佳答案

TL;博士:An excellent working example is available on the OpenLayers WebSite

(在下面的例子中,我使用的位置应该是在奥地利的某个地方)

首先,让我们确保 EPSG:31255 设置正确。正如评论中所说,我建议您使用 proj4js,如果您必须处理投影,它会让您的生活更轻松。

将 proj4js 库导入到应用中后,声明 EPSG:31255 投影,如下所示:

proj4.defs("EPSG:31255","+proj=tmerc +lat_0=0 +lon_0=13.33333333333333 +k=1 +x_0=0 +y_0=-5000000 +ellps=bessel +towgs84=577.326,90.129,463.919,5.137,1.474,5.297,2.4232 +units=m +no_defs");

(您可以使用epsg.io作为源在proj4js中导入大量投影:https://epsg.io/31255.js)

Hint: Import proj4js before OpenLayers, and it will be used without extra work in OpenLayers.

第一种情况:处理所有层的一个投影

现在,我们需要使用考虑到此新投影的 View 来创建或更新 OpenLayers map 。

let myMap = new ol.Map({
target: myDOMElement,
layers: [...],
view: new ol.View({
center: ol.proj.fromLonLat([50163.181015, 255280.097217]),
zoom: 5,
projection: 'EPSG:31255'
})
});

现在,您可能很难设置正确的中心,因为您必须在 EPSG:31255 投影中设置其坐标。

为了使其更容易,我建议使用基于 EPSG:4326 的变换。

view: new ol.View({
// Converts from coordinates known in EPSG:4326 to coordinates in EPSG:31255
center: ol.proj.transform([13.7548828125, 47.43896484375], 'EPSG:4326', 'EPSG:31255'),
zoom: 5,
projection: 'EPSG:31255' // Projection you want the map to use
})

第二种情况:处理不同的预测

如果不同层有不同的投影怎么办?

只需在您的 TileWMS 中指定它们(确保它们全部已声明)。

let myWMSSource = new ol.source.TileWMS({
url: myURL,
params: {
'LAYERS': 'myCustomLayer'
},
serverType: 'geoserver',
projection: 'EPSG:31255' // Declare the projection the source is in.
});

OpenLayers 应该自动将它们重新投影到您的 map 投影中。

具体示例:在 OSM map 之上使用图层

/** Set a source */
let myWMSSource = new ol.source.TileWMS({
url: myURL,
params: {
'LAYERS': 'myCustomLayer'
},
serverType: 'geoserver',
projection: 'EPSG:31255'
});

/** Create a custom tile layer */
let myLayerTile = new ol.layer.Tile({
source: myWMSSource,
name: 'MyTile',
visible: true
});

/**
* Create a layer using OSM.
* Note that ol.source.OSM uses EPSG:3857
*/
let OSMLayer = new ol.layer.Tile({
source: new ol.source.OSM()
});

/** Set-up the map */
let myMap = new ol.Map({
target: DOMElement,
layers: [OSMLayer, myLayerTile],
view: new ol.View({
center: ol.proj.fromLonLat([1549123.872774, 6044640.196792]),
zoom: 1,
projection: 'EPSG:3857'
}),
loadTilesWhileAnimating: true,
loadTilesWhileInteracting: true,
controls: ol.control.defaults().extend([
new ol.control.OverviewMap()
])
});

关于javascript - WMS 图层未在所有缩放级别上正确渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50871635/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com