Help

Re: Map directions from mobile

Solved
Jump to Solution
1065 3
cancel
Showing results for 
Search instead for 
Did you mean: 
andrew5
4 - Data Explorer
4 - Data Explorer

Hi
I have a very basic base with a list of locations and their details. I would like to know if there is a way once the address is ‘clicked’ in a record it can take me to a maps product such as Google maps, etc. that will allow directions/location information?

Thanks

1 Solution

Accepted Solutions
TheTimeSavingCo
17 - Neptune
17 - Neptune

Hi Andrew, you could use Google Maps URLs for that, and you can find the documentation here

In practice, you’d probably make a formula field with the following formula:

"https://www.google.com/maps/search/?api=1&query=" & ENCODE_URL_COMPONENT({Location Name})

Resulting in something like the following (as taken from the documentation above): https://www.google.com/maps/search/?api=1&query=centurylink+field

Which I think is what you’re looking for?

See Solution in Thread

5 Replies 5
TheTimeSavingCo
17 - Neptune
17 - Neptune

Hi Andrew, you could use Google Maps URLs for that, and you can find the documentation here

In practice, you’d probably make a formula field with the following formula:

"https://www.google.com/maps/search/?api=1&query=" & ENCODE_URL_COMPONENT({Location Name})

Resulting in something like the following (as taken from the documentation above): https://www.google.com/maps/search/?api=1&query=centurylink+field

Which I think is what you’re looking for?

Thanks Adam
I am only new to Airtable and this sort of programming so I will see if I can follow the instructions and make it work on my base.

Andrew

Roger that. I’ve put it together here for you to refer to if you’d like. Best of luck man

Screenshot 2022-08-02 at 10.28.46 AM

Thanks I have got the location map to open using your formula. Now I am getting greedy and would like to get directions and maybe a shortest route for a number of locations. I have found a thread with the shortest route details, I just need to get my head around it.

Thanks again for your help.

Interesting! Hmm, how would you input the origin point for the directions though?