MediaWiki:Common.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
$( | $(document).on('change', 'input[name="address"]', function() { | ||
const addr = $(this); | |||
const addr = $( | |||
const lat = $('input[name="latitude"]'); | const lat = $('input[name="latitude"]'); | ||
const lon = $('input[name="longitude"]'); | const lon = $('input[name="longitude"]'); | ||
const q = encodeURIComponent(addr.val()); | |||
if ( | if (!q) return; | ||
const url = 'https://nominatim.openstreetmap.org/search?format=json&q=' + q; | |||
$.getJSON(url, function(data) { | |||
if (data && data.length > 0) { | |||
lat.val(data[0].lat); | |||
lon.val(data[0].lon); | |||
} | |||
} | |||
}); | }); | ||
}); | }); | ||
Revision as of 14:01, 14 February 2026
$(document).on('change', 'input[name="address"]', function() {
const addr = $(this);
const lat = $('input[name="latitude"]');
const lon = $('input[name="longitude"]');
const q = encodeURIComponent(addr.val());
if (!q) return;
const url = 'https://nominatim.openstreetmap.org/search?format=json&q=' + q;
$.getJSON(url, function(data) {
if (data && data.length > 0) {
lat.val(data[0].lat);
lon.val(data[0].lon);
}
});
});