Skip to content

Commit

Permalink
Also pass QUERY_LAYERS to feature search info request
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Oct 29, 2023
1 parent 97796e6 commit c0b3206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/SearchProviders.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class QgisSearch {
params.LAYERS.push(layer);
params.FILTER.push(layer + ":" + filter[layer]);
});
params.LAYERS = params.LAYERS.join(",");
params.QUERY_LAYERS = params.LAYERS = params.LAYERS.join(",");
params.FILTER = params.FILTER.join(";");
axios.get(searchParams.theme.featureInfoUrl, {params}).then(response => {
callback(QgisSearch.searchResults(
Expand Down

0 comments on commit c0b3206

Please sign in to comment.