if (node) {
if (zoom >= 11) {
var args = new Object();
- //conjure a bounding box centred at the lat/lon.
- //TODO: feed actual bounds of the window through to here somehow.
+ //set bbox param from 'extents' object
minlon = extents.left;
minlat = extents.bottom;
maxlon = extents.right;
maxlon = Math.round(maxlon * decimals) / decimals;
maxlat = Math.round(maxlat * decimals) / decimals;
args.bbox = minlon + "," + minlat + "," + maxlon + "," + maxlat;
- node.href = setArgs("history/", args);
+ node.href = setArgs("/history", args);
node.style.fontStyle = 'normal';
} else {
node.href = 'javascript:alert("zoom in to see editing history");';