Spremenjene koordinate se upoštevajo v PQ.
Z malo računalniškega znanja gre to na roke, na primer z vpisom ukaza
Koda: Izberi vse
$('#uxLatLon').append(buildCacheCoordMenu());
Napisal sem pa tudi kratko skripto, ki doda gumb za spremembo koordinat in pokliče zgornji ukaz ob kliku:
Koda: Izberi vse
// ==UserScript==
// @name GC Change coordinates
// @namespace
// @description Change coordinates for all types of geocaches ~ by jeancaffou
// @include http://www.geocaching.com/geocache/*
// @version 0.4
// ==/UserScript==
var s = document.createElement('script');
s.type = 'text/javascript';
s.textContent = '(' + function() {
if(document.getElementById('ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoCode') != null){
// geocaching.com cache detail page
var GCCode = $('#ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoCode')
.html();
var html = '<input type="button" '
+ 'value="Change coords" '
+ 'onclick="$('#uxLatLon').append(buildCacheCoordMenu());'
+ 'return false;" '
+ '/>';
$('#Download p:last').append(html);
$('#Download dd:last').append(html);
}
} + ')();';
// Inject Script. Can’t use jQuery yet, because the page is not
// accessible from Tampermonkey
document.getElementsByTagName("head")[0].appendChild(s);