Fix "Edit Area" remote control link

Fixes https://trac.openstreetmap.org/ticket/4699
This commit is contained in:
John Firebaugh 2012-11-25 12:05:01 -04:00 committed by Tom Hughes
parent 7a334bd3fe
commit 3758930e18

View file

@ -1,9 +1,9 @@
$(document).ready(function () { $(document).ready(function () {
function remoteEditHandler(bbox, select) { function remoteEditHandler(bbox, select) {
var left = bbox.left - 0.0001; var left = bbox.getWestLng() - 0.0001;
var top = bbox.top + 0.0001; var top = bbox.getNorthLat() + 0.0001;
var right = bbox.right + 0.0001; var right = bbox.getEastLng() + 0.0001;
var bottom = bbox.bottom - 0.0001; var bottom = bbox.getSouthLat() - 0.0001;
var loaded = false; var loaded = false;
$("#linkloader").load(function () { loaded = true; }); $("#linkloader").load(function () { loaded = true; });