diff options
Diffstat (limited to 'chimere/static/edit_map.js')
| -rw-r--r-- | chimere/static/edit_map.js | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/chimere/static/edit_map.js b/chimere/static/edit_map.js index 8f37f6b..88237a4 100644 --- a/chimere/static/edit_map.js +++ b/chimere/static/edit_map.js @@ -47,8 +47,8 @@ var putMarker = function (lonlat, zoom){                                        epsg_display_projection);      document.getElementById('id_point').value = 'POINT(' + lonlat.lon +                                                  ' ' + lonlat.lat + ')'; -    document.getElementById('live_latitude').value = lonlat.lon; -    document.getElementById('live_longitude').value = lonlat.lat; +    document.getElementById('live_latitude').value = lonlat.lat; +    document.getElementById('live_longitude').value = lonlat.lon;      /*zoom to the point*/      if (zoom){          var bounds = layerMarkers.getDataExtent();  | 
