From 335a7fc90858187bc756f115866fa7c2309720b5 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sun, 29 Dec 2013 17:52:50 +0000 Subject: added temporary debug output --- map3.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'map3.js') diff --git a/map3.js b/map3.js index 51ae3be..07c9915 100644 --- a/map3.js +++ b/map3.js @@ -11,9 +11,18 @@ overlays["links"] = new Array(); var locations = new Array(); var links = new Array(); + +debug = function (log_txt) { + if (typeof window.console != 'undefined') { + console.log(log_txt); + } +} + function initialize(lat, lng, res) { -// $('#visibox').hide(); $('#southeastcontainer').hide(); + + debug("Initializing Funkfeuer Graz Map"); + google.maps.visualRefresh=true; var mapOptions = { center: new google.maps.LatLng(lat, lng), @@ -59,6 +68,8 @@ function initialize(lat, lng, res) { } function onAddOverlay(overlay) { + debug("onAddOverlay called!"); + switch(overlay.overlaytype) { case "location": overlays["locations"].push(overlay); break; case "link": overlays["links"].push(overlay); break; -- cgit v1.2.1