From f5f23e6fbca52a35a84adc0d4bff8628f5899a6d Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Mon, 1 Jul 2019 21:21:26 +0200 Subject: [PATCH] remove debugging --- htdocs/map.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/htdocs/map.js b/htdocs/map.js index 9dfb24d..1751089 100644 --- a/htdocs/map.js +++ b/htdocs/map.js @@ -26,10 +26,8 @@ if (update.location.type != 'latlon') return; var pos = new google.maps.LatLng(update.location.lat, update.location.lon) if (markers[update.callsign]) { - console.info("updating"); markers[update.callsign].setPosition(pos); } else { - console.info("initializing"); markers[update.callsign] = new google.maps.Marker({ position: pos, map: map,