< Mapki's Deep Diff
Mapki's Deep Diff/Bookmarklet
An unofficial bookmarklet (see this page's history for authors) tested only with Chrome, Firefox, and Pale Moon (edit this if you tested in another browser).
Run this on a page (/history page works too) of a node, way or relation (elements) – example. The bookmarklet opens the deep diff page (example) in a new tab.
For Chrome:
- Create a new bookmark.
- Name the bookmark.
- Paste the javascript code into the URL box.
- Click the save button.
javascript:var urlParts = document.location.href.split('/');
if (urlParts[2] === 'www.openstreetmap.org') {
switch (urlParts[3]) {
case "node":
case "way":
case "relation":
var idMatch = urlParts[4].match(/\d+/);
var objId = idMatch[0];
(function () {
window.open('http://osm.mapki.com/history/' + encodeURIComponent(urlParts[3]) + '.php?id=' + encodeURIComponent(objId));
})();
break;
default:
alert('Only nodes, ways and relation histories can be inspected.');
break;
}
}
else {
alert('This is not a supported www.openstreetmap.org page.');
}
This article is issued from Openstreetmap. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.