debugged build precision values on decimal places inside nocodb
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user