From 4d40dba35b819fcb064c634e1e397d7fab6bc8bc Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 25 Jun 2019 16:34:07 +0200 Subject: [PATCH] Clear the query results on window close --- contribs/gmf/src/query/windowComponent.js | 1 + 1 file changed, 1 insertion(+) diff --git a/contribs/gmf/src/query/windowComponent.js b/contribs/gmf/src/query/windowComponent.js index f3e9261f24d7..bde77e0e2a21 100644 --- a/contribs/gmf/src/query/windowComponent.js +++ b/contribs/gmf/src/query/windowComponent.js @@ -532,6 +532,7 @@ QueryWindowController.prototype.highlightCurrentFeature_ = function(opt_lastFeat QueryWindowController.prototype.close = function() { this.open = false; this.clear(); + this.ngeoMapQuerent_.clear(); };