debugged build precision values on decimal places inside nocodb

This commit is contained in:
2025-07-11 10:00:37 -06:00
parent 08782379ab
commit 2b05b608ba
5 changed files with 82 additions and 55 deletions

View File

@@ -36,8 +36,8 @@ setInterval(() => {
* @returns {Promise<Object>} Geocoding result
*/
async function reverseGeocode(lat, lng) {
// Create cache key
const cacheKey = `${lat.toFixed(6)},${lng.toFixed(6)}`;
// Create cache key - use full precision
const cacheKey = `${lat},${lng}`;
// Check cache first
const cached = geocodeCache.get(cacheKey);