I want to be able to use my location URL to generate address

I am having an issue. I want to be able to use my location URL generated from GPS coordinates to create an address. I want to check the address generated via GPS coordinates.

What do you mean by your location URL? How are you generating it?

it is generated via my GPS Coordinate
Capture
rdinates

The standard structure is:

https://www.google.com/maps?q=lat,lon

You should have your Construct URL column like this:

https
www.google.com
maps

Query parameters: q => gps_coordinates

1 Like

You need an API to generate addresses on Google Maps.

Thanks for the feedback they were all helpful, but then how can i generate longitude
Capture
and latitude

Use the javascript field and write the following code:

return p1.split(',')[0]; for latitude and return p1.split(',')[1]; for longitude.

Thank you very much, this works.

1 Like