gpt4 book ai didi

javascript - 无法使用 OpenLayers 3 站点中的 WFS 示例作为基础加载另一个 WFS

转载 作者:行者123 更新时间:2023-12-03 07:41:06 26 4
gpt4 key购买 nike

我是 OpenLayers3 的初学者,而且我是这个网站的新手,所以这是我的第一个问题,希望我在这里正确地提出它。对我来说不起作用的是在 OpenLayers3 中打开一个(不是平铺的?)WFS 层。我使用开放层站点的 WFS 示例作为基础(也是因为它似乎是一个相对简单的代码)。我试图在我的教科书 OpenLayers3、开放层网站、Google 和这个网站上找到解决方案,但没有成功。下面是我用 OpenLayers 示例编写的代码,但现在是另一个 WFS,因为我认为应该打开这个 WFS。我做错了什么?

 // working example from: http://openlayers.org/en/v3.13.1/examples/vector-wfs.html

var vectorSource = new ol.source.Vector({
format: new ol.format.GeoJSON(),
url: function(extent) {
return 'http://demo.boundlessgeo.com/geoserver/wfs?service=WFS&' +
'version=1.1.0&request=GetFeature&typename=osm:water_areas&' +
'outputFormat=application/json&srsname=EPSG:3857&' +
'bbox=' + extent.join(',') + ',EPSG:3857';
},
strategy: ol.loadingstrategy.tile(ol.tilegrid.createXYZ({
maxZoom: 19
}))
});


var vector1 = new ol.layer.Vector({
source: vectorSource,
style: new ol.style.Style({
stroke: new ol.style.Stroke({
color: 'rgba(0, 255, 255, 1.0)',
width: 2
})
})
});

//基于上面示例代码的无效代码

var vectorSource = new ol.source.Vector({
format: new ol.format.GeoJSON(),
url: function(extent) {
return 'https://geodata.nationaalgeoregister.nl/bestuurlijkegrenzen/wfs?service=WFS&' +
'version=1.1.0&request=GetFeature&typename=bestuurlijkegrenzen:gemeenten&' +
'outputFormat=application/json&srsname=EPSG:28992&' +
'bbox=' + extent.join(',') + ',EPSG:28992';

},
strategy: ol.loadingstrategy.tile(ol.tilegrid.createXYZ({
maxZoom: 19
}))
});


var vector = new ol.layer.Vector({
source: vectorSource,
style: new ol.style.Style({
stroke: new ol.style.Stroke({
color: 'rgba(0, 255, 255, 1.0)',
width: 2
})
})
});

最佳答案

除非您提供完整的代码,否则我只能做出一些猜测。你的两层有不同的投影。我猜您使用 epsg:3857 进行 View 投影,因此使用此范围内的坐标将返回 0 个要素。首先要尝试的是使用 View 的投影从地理服务器请求图层。

var vectorSource = new ol.source.Vector({
format: new ol.format.GeoJSON(),
url: function(extent) {
return 'https://geodata.nationaalgeoregister.nl/bestuurlijkegrenzen/wfs?service=WFS&' +
'version=1.1.0&request=GetFeature&typename=bestuurlijkegrenzen:gemeenten&' +
'outputFormat=application/json&srsname=EPSG:3857&' +
'bbox=' + extent.join(',') + ',EPSG:3857';

},
strategy: ol.loadingstrategy.tile(ol.tilegrid.createXYZ({
maxZoom: 19
}))
});

这将强制 geoserver 在服务器端进行重新投影。我建议首先尝试上述方法,以确保这是您的情况。然后你必须决定是否要在客户端或服务器端进行重新定位。

关于javascript - 无法使用 OpenLayers 3 站点中的 WFS 示例作为基础加载另一个 WFS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35409506/

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