From 56bbc3f4ccf7e9da0d37b894db12b3768d3bb468 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 30 Dec 2024 13:51:42 -0700 Subject: [PATCH] show results for project map grouping when clicked --- src/views/DiscoverView.vue | 35 ++++++++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue index 4d0bd97..ba718f1 100644 --- a/src/views/DiscoverView.vue +++ b/src/views/DiscoverView.vue @@ -44,6 +44,7 @@ isMappedActive = false; isRemoteActive = false; isSearchVisible = true; + tempSearchBox = null; searchLocal(); " v-bind:class="computedLocalTabStyleClassNames()" @@ -59,7 +60,6 @@ --> -
  • -
    +
    { + this.tempSearchBox = { + minLat: tile.minFoundLat, + maxLat: tile.maxFoundLat, + westLong: tile.minFoundLon, + eastLong: tile.maxFoundLon, + }; + this.searchLocal(); + }); this.markers[ "" + tile.indexLat + "X" + tile.indexLon + "*" + tile.recordCount ] = marker; } } + await this.searchLocal(); } else { throw { message: "Got an error loading projects on the map.",