问题

使用leaflet.wms.js插件,我已经设法通过单击显示有关WMS图层的信息(使用GetFeatureInfo)。问题在于,geoserver仅以纯文本格式交付数据,并且如下图所示,这很混乱。

Yep, it is a mess indeed

因此,我想过滤GetFeatureInfo查询的结果,以便仅显示有用的信息。我写了很多JavaScript行,女巫过滤了包含GetFeatureInfo请求结果的<div>

var GetFeatureInfo = document.getElementsByClassName("leaflet-popup-content")[0].innerHTML;
tipo = GetFeatureInfo.split(/'/)[21];
legenda = GetFeatureInfo.split(/'/)[27];
document.getElementsByClassName("leaflet-popup-content")[0].innerHTML = tipo + ":<br/>PERICOLOSITÀ " + legenda;


我试图将这些行添加到女巫调用并配置地图的脚本的底部,但是没有用。我想这些行没有在正确的时间执行。



感谢Sebastian Schulz,我设法过滤了GetFeatureInfo查询的结果。我们需要使用钩子L.WMS.Source扩展showFeatureInfo类,并编辑该类在弹出窗口中显示GetFEatureInfo的方式。像这样:

var CleanInfoSource = L.WMS.Source.extend({
    'showFeatureInfo': function(latlng, info){
        if (!this._map){return;}
        tipo = info.split(/'/)[21];
        legenda = info.split(/'/)[27];
        info = tipo + ":<br/>PERICOLOSITÀ " + legenda;
        this._map.openPopup(info, latlng);
    }
});

var minambPAI = new CleanInfoSource("http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/Vettoriali/PAI_pericolosita.map",{
        format: "image/png",
        transparent: true,
        attribution: "<a href='http://www.pcn.minambiente.it'>Ministero dell&#8217;Ambiente</a>",
        info_format: "text/plain"
    }
);


正如塞巴斯蒂安(Sebastian)所说,此方法(以及其他方法)在documentation中。而且我还发现钩子语法在leaflet.wms.js脚本中。 RTFM我猜... :)

最佳答案

根据Leaflet WMS documentation,您需要扩展L.WMS.Source类并覆盖钩子(例如showFeatureInfo)。检查此代码段并编辑info变量以创建自定义弹出窗口。

var map = L.map('map').setView([43.53, 10.32], 13);
var openTopoMap = L.tileLayer(
  'http://{s}.tile.opentopomap.org/{z}/{x}/{y}.png',
  {attribution: '<a href="https://opentopomap.org/copyright">OpenTopoMap</a>'}).addTo(map);
var MySource = L.WMS.Source.extend({
    'showFeatureInfo': function(latlng, info) {
        if (!this._map) {
            return;
        }
        // do whatever you like with info
        console.log(info)
        this._map.openPopup(info, latlng);
    }
});
var minambPAI = new MySource("http://wms.pcn.minambiente.it/ogc?map=/ms_ogc/WMS_v1.3/Vettoriali/PAI_pericolosita.map",
    {
        format: "image/png",
        transparent: true,
        attribution: "<a href='http://www.pcn.minambiente.it'>Ministero dell&#8217;Ambiente</a>",
        info_format: "text/plain"
    }
);
var periAlluvioneMME = minambPAI.getLayer('RN.PAI.PERICOLOSITA.ALLUVIONE').addTo(map);
var periFranaMME = minambPAI.getLayer('RN.PAI.PERICOLOSITA.FRANA_01');
var control = L.control.layers({}, {
    'Pericolosità  Alluvioni: moderata a molto elevata': periAlluvioneMME,
    'Pericolosità  Frane: moderata a molto elevata': periFranaMME
})
control.addTo(map);

关于javascript - 过滤getFeatureInfo结果(传单WMS插件),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46268753/

10-10 00:13