summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/lib/etc/geo.js
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/www/js/lib/etc/geo.js')
-rwxr-xr-xStoneIsland/www/js/lib/etc/geo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/StoneIsland/www/js/lib/etc/geo.js b/StoneIsland/www/js/lib/etc/geo.js
index 5af9ecfd..885a1c6c 100755
--- a/StoneIsland/www/js/lib/etc/geo.js
+++ b/StoneIsland/www/js/lib/etc/geo.js
@@ -10,7 +10,7 @@ var geo = (function(){
geo.success = function(position){
var lat_str = as_degrees( position.coords.latitude || 40.99167, "N", "S" )
- var lng_str = as_degrees( position.coords.longitude || -74.07944, "W", "E" )
+ var lng_str = as_degrees( position.coords.longitude || -74.07944, "E", "W" )
$(".latlng").html( lat_str + "     " + lng_str )
geo.done()
}