Geolocalización a partir de dirección

Hola! ¿Es posible obtener las coordenadas de una ubicación a partir de la dirección del lugar?
Gracias.

Hi @Maria_Pizarro

Not at the moment.
You may want to have a look here for a workaround:

[Latlong from Address](https://community.appsheet.com/t/latlong-from-address/19394/5) Questions

Not sure if this will help anyone but here is an Apps Script you can use to convert Address into LatLong values: /** Returns latitude and longitude values for given address using the Google Maps Geocoder. @param {string} address - The address you get the latitude and longitude for. @customfunction */ function GEOCODE_GOOGLE(address) { if (address.map) { return address.map(GEOCODE_GOOGLE) } else { var r = Maps.newGeocoder().geocode(address) for (var i = 0; i < r.results.length; i++)…

1 Like

Gracias.