]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/components/SearchSectionReverse.svelte
reverse query form: also auto-split by encoded comma
[nominatim-ui.git] / src / components / SearchSectionReverse.svelte
index e8f1a47bb90534b6b4b9e8c9a8db323665af1509..2f53f39751f5376af959c550f1e994b5cfb3b05b 100644 (file)
@@ -29,7 +29,7 @@
 
   // common mistake is to copy&paste latitude and longitude into the 'lat' search box
   function maybeSplitLatitude(e) {
-    var coords_split = e.target.value.split(',');
+    var coords_split = e.target.value.split(/,|%2C/);
     if (coords_split.length === 2) {
       document.querySelector('input[name=lat]').value = L.Util.trim(coords_split[0]);
       document.querySelector('input[name=lon]').value = L.Util.trim(coords_split[1]);