increased debug level for set with click

pull/73/head
jonsowman 2010-07-21 13:56:40 +01:00
rodzic e8927ab697
commit f0bda2e008
1 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -449,6 +449,7 @@ function drawDeltaSquare(map) {
} }
function setFormLatLon(GLatLng) { function setFormLatLon(GLatLng) {
appendDebug("Trying to set the form lat long");
$("#lat").val(GLatLng.lat().toFixed(4)); $("#lat").val(GLatLng.lat().toFixed(4));
$("#lon").val(GLatLng.lng().toFixed(4)); $("#lon").val(GLatLng.lng().toFixed(4));
// remove the event handler so another click doesn't register // remove the event handler so another click doesn't register
@ -456,6 +457,7 @@ function setFormLatLon(GLatLng) {
// change the dropdown to read "other" // change the dropdown to read "other"
SetSiteOther(); SetSiteOther();
// plot the new marker for launch location // plot the new marker for launch location
appendDebug("Plotting the new launch location marker");
plotClick(); plotClick();
} }
@ -463,8 +465,10 @@ function setLatLonByClick(state) {
if ( state == true ) { if ( state == true ) {
// check this listener doesn't already exist // check this listener doesn't already exist
if (!clickListener) { if (!clickListener) {
appendDebug("Enabling the set with click listener");
clickListener = google.maps.event.addListener(map, clickListener = google.maps.event.addListener(map,
'click', function(event) { 'click', function(event) {
appendDebug("Got a click from user, setting values into form");
$("#error_window").fadeOut(); $("#error_window").fadeOut();
setFormLatLon(event.latLng); setFormLatLon(event.latLng);
}); });
@ -472,6 +476,7 @@ function setLatLonByClick(state) {
// tell the user what to do next // tell the user what to do next
throwError("Now click your desired launch location on the map"); throwError("Now click your desired launch location on the map");
} else if ( state == false ) { } else if ( state == false ) {
appendDebug("Removing the set with click listener");
google.maps.event.removeListener(clickListener); google.maps.event.removeListener(clickListener);
clickListener = null; clickListener = null;
} else { } else {