diff options
Diffstat (limited to 'map3.js')
-rw-r--r-- | map3.js | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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; |