auto-sync: 2026-05-05 18:20:01

This commit is contained in:
Stream
2026-05-05 18:20:01 +03:00
parent 773949b342
commit 49be1b84d5

View File

@@ -513,7 +513,7 @@ async function reverseGeocode(lat, lon) {
);
const data = await resp.json();
const a = data.address || {};
const name = a.village || a.town || a.city || a.suburb || a.road || a.county || a.state || `${lat.toFixed(3)}, ${lon.toFixed(3)}`;
const name = a.village || a.hamlet || a.town || a.city || a.suburb || a.road || a.county || a.state || `${lat.toFixed(3)}, ${lon.toFixed(3)}`;
geocodeCache[key] = name;
return name;
} catch(e) {