How to handly locations in Xano X Adalo

How do i share Location Data to Xano with an address

Xano handles geolocation a bit differently, using their geopoint property. You can use a custom action to send the user lat and long into the Xano geopoint property.

Testing this raw on Xano as a text input, it would be structured like this:
{“lat”: 37.7749 ,“lng”: -122.5776844}

So if you send two inputs from Adalo ‘lat’ and ‘long’, you create a variable (or enter this directly into db field) that looks like this:

{“lat”:
CONCAT
‘lat’ input
CONCAT
,“lng”:
CONCAT
‘long’ input
}