Remove debug console.log statements for hover handlers

- Removed console.log for "Adding hover handlers for RF packet"
- Removed console.log for "Marker hover start"
- Removed console.log for "Marker hover end"

These were debug statements that are no longer needed.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-18 15:12:26 -05:00
parent 1a84eb594a
commit 420d7ab57b
No known key found for this signature in database

View file

@ -1246,9 +1246,7 @@ let MapAPRSMap = {
// Handle marker hover for RF path visualization
// Check for non-empty RF path (not TCPIP and not empty string)
if (data.path && data.path.trim() !== "" && !data.path.includes("TCPIP")) {
console.log("Adding hover handlers for RF packet:", data.callsign, "path:", data.path);
marker.on("mouseover", () => {
console.log("Marker hover start for:", data.callsign);
// Check if LiveView is still connected before sending event
if (self.pushEvent && typeof self.pushEvent === 'function' && !self.isDestroyed) {
try {
@ -1268,7 +1266,6 @@ let MapAPRSMap = {
});
marker.on("mouseout", () => {
console.log("Marker hover end for:", data.callsign);
// Check if LiveView is still connected before sending event
if (self.pushEvent && typeof self.pushEvent === 'function' && !self.isDestroyed) {
try {