diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js index 35adb42..54dd065 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js @@ -4391,7 +4391,6 @@ window.ft8MapAddLocator = function(message, grids, type = "ft8", station = null, const tooltipHtml = buildDecodeLocatorTooltipHtml(grid, existing, markerType); existing.marker.setStyle(locatorStyleForCount(count, markerType)); existing.marker.setPopupContent(tooltipHtml); - existing.marker.setTooltipContent(tooltipHtml); assignLocatorMarkerMeta(existing.marker, existing.sourceType, existing.bandMeta); rebuildMapLocatorFilters(); applyMapFilter(); @@ -4406,13 +4405,7 @@ window.ft8MapAddLocator = function(message, grids, type = "ft8", station = null, const tooltipHtml = buildDecodeLocatorTooltipHtml(grid, { stations, stationDetails }, markerType); const marker = L.rectangle(bounds, locatorStyleForCount(count, markerType)) .addTo(aprsMap) - .bindPopup(tooltipHtml) - .bindTooltip(tooltipHtml, { - className: "decode-locator-tip-shell", - direction: "top", - sticky: true, - opacity: 1, - }); + .bindPopup(tooltipHtml); marker.__trxType = markerType; const bandMeta = collectBandMeta( Array.from(stationDetails.values()).map((detail) => Number(detail?.freq_hz)) diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html index 9a5a425..ef5aa25 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/index.html @@ -579,12 +579,12 @@