summaryrefslogtreecommitdiff
path: root/map.js
diff options
context:
space:
mode:
Diffstat (limited to 'map.js')
-rw-r--r--map.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/map.js b/map.js
index 8f7a088..a248b1c 100644
--- a/map.js
+++ b/map.js
@@ -497,7 +497,6 @@ function addNewNodeText(point) {
}
function setNewMarker(point) {
-// TODO: make this dragable??
var marker = new google.maps.Marker({position: point, icon: makeIcon('newnode')});
var infowindow = new google.maps.InfoWindow({ content: addNewNodeText(point) });
google.maps.event.addListener(infowindow,"closeclick",function () { marker.setMap(null); });