我想禁用叶页的WMS getFeatureInfo弹出窗口,当我在wms图层enter image description here之外单击时,我使用此插件https://gist.github.com/rclark/6908938
发布于 2020-05-26 00:42:13
将函数更改为:
getFeatureInfo: function (evt) {
// Make an AJAX request to the server and hope for the best
var url = this.getFeatureInfoUrl(evt.latlng),
showResults = L.Util.bind(this.showGetFeatureInfo, this);
$.ajax({
url: url,
success: function (data, status, xhr) {
var err = typeof data === 'string' ? null : data;
//Fix for blank popup window
var doc = (new DOMParser()).parseFromString(data, "text/html");
if (doc.body.innerHTML.trim().length > 0)
showResults(err, evt.latlng, data);
},
error: function (xhr, status, error) {
showResults(error);
}
});
},来源:https://gist.github.com/rclark/6908938#gistcomment-2277325
https://stackoverflow.com/questions/62006783
复制相似问题