remove debugging

This commit is contained in:
Jakob Ketterl 2019-07-01 21:21:26 +02:00
parent 3b2b51f07c
commit f5f23e6fbc
1 changed files with 0 additions and 2 deletions

View File

@ -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,