As a reminder, we are still beta testing a map feature for Pro users. If you would like to request access, please fill out this form.
+1
It’s a must-have field type
As a reminder, we are still beta testing a map feature for Pro users. If you would like to request access, please fill out this form.
Do you have any idea of a date for the maps block? It’s a must-have for a site I’m working on. I do realise it is hard to give an accurate date - but even a rough idea would be lovely
Many thanks
Seamus
This has my vote! We would use this to ensure that technicians are completing timesheets at the jobsite as required.
My case is that I’m adding clients to a table and they each have a phone number, an email, and an address, along with a bunch of other fields and links. I’ve put the addresses in a text field but I’m mostly concerned with getting address validation as I type.
I would love to see a field just for country or state, so I can filter or group records.
As a reminder, we are still beta testing a map feature for Pro users. If you would like to request access, please fill out this form.
The Geocode —> Map Block feature is a welcome addition, and addresses some of my needs in this area.
However, a field that can capture GPS coordinates from a mobile device would be immensely useful.
I have field technicians that I’d like to have scan barcodes on samples they have made at construction sites in the field to create records for each sample. Those samples need to be picked up by a different technician at a later time, and often they are difficult to find. If my technicians could scan the barcode into Airtable and have Airtable capture their GPS coordinates at that time, so that a future technician could tap the coordinates to open them in a map application on their phone, it would solve a lot of issues for me.
Thanks!
+1 to this!
My use case would be as part of a spreadsheet for comparing potential flats to move into
I would also love to be able to add GPS coordinates in Airtable!
I was beginning to think about using Airtable as a personal project manager, especially my personal photo projects.
I often go on location scouting for my very diverse and numerous personal photo projects.
Sometimes I found a great spot, sometimes I come home unlucky but most of the time, I found the perfect spot for at least one of my project by chance, doing something completely different, probably in a hurry, my hands full…
I always have my phone with me, so, a quick snapshot and the GPS coordinates added to Airtable and it’s done, I only have to come back later with my gear.
I know there are many ways available to do that already, many apps etc… I’ve tried some of them and generally if they do a part of what I’m looking for, they don’t do the rest…
As I’m trying to centralize more and more things in Airtable, it would just be great to have that feature ! :grinning_face_with_smiling_eyes:
I would use this to add locations to a base I am trying to create for family activities. It is pretty much necessary for want I want to accomplish. I want to be able to populate locations of activities on a map for planning purposes.
I would use this to add locations to a base I am trying to create for family activities. It is pretty much necessary for want I want to accomplish. I want to be able to populate locations of activities on a map for planning purposes.
+1 to this!
One other potential use is the ability, like in the phone number or email fields, is to enter multiple locations for one record without having to make new columns
+1 to @John_Nunya
It’s nice to be able to have a map on the side but I’d like a mini-map showing the address in some context in each row for my trip planning, not just one aggregated map view
As a reminder, we are still beta testing a map feature for Pro users. If you would like to request access, please fill out this form.
This is not available in beta request form.
What is current status?
Yes please! I’ve even been trying to resort to uploading images and extracting the EXIF data in a script then updating a location field, but even the EXIF data is stripped. The location data type should be able to get the current location on mobile as well.
Huge bonus points for adding a new view that’s a map. A good portion of my tables would benefit hugely from that!
I agree that a “CURRENT LOCATION” button would be fantastic. Also being able to have addresses auto-fill like in iPhone Calendar event location field would be stellar.
I honestly just want a location field, not the fancy “Maps block” that you have to upgrade to Pro to be able to even use. I just want a field where I can lookup a place and get a directions link returned. Doesn’t seem that complicated.
I vote for this feature as well - adding a location data type is VITAL
It’s great that the Map Block is available now, but I just need a simple link that opens Google maps or similar so I can get directions.
Also looking for a more simple location feature. The maps feature is great, but a little complex for the regular users in my crew who are contributing.
As a temporary solution, I put the address in a separate field and I have another field with the following formula:
IF(Address = BLANK(), BLANK(), CONCATENATE(“www.google.com/maps/place/”, SUBSTITUTE(Address, " ", “+”)))
I’m creating a CRM base and a “Location” filed would be nice. Like Phone and Email it would be nice if this field type had behavior on par with other systems, in that clicking on the address would engage map functionality on phone, etc.
As a temporary solution, I put the address in a separate field and I have another field with the following formula:
IF(Address = BLANK(), BLANK(), CONCATENATE(“www.google.com/maps/place/”, SUBSTITUTE(Address, " ", “+”)))
This seems like it would really help us! Would you be able to explain your formula a little more? Also, what format do you input into the ‘address’ field?
Yes! a “location type” with address, city/state/zip would be a great help with our mailing list.
This seems like it would really help us! Would you be able to explain your formula a little more? Also, what format do you input into the ‘address’ field?
Elly, Alexey’s formula works as follows (I am going to use restaurant names for my example):
- First create an column for the restaurant names (we will call it “Restaurant”)
- Create a 2nd column (I will refer to this as the “google maps link”) and add Alexey’s formula (which I changed to the following):
IF(Restaurant=BLANK(),BLANK(),CONCATENATE("https://www.google.com/maps/search/",SUBSTITUTE(Restaurant
," “,”+")))
Here is the breakdown:
- IF the “Restaurant” name is blank, then return blank for the “google maps link”
- IF the “Restaurant” name is NOT blank, then return the following string of text together:
https://www.google.com/maps/search/restaurant+name
*For a google maps link to work there needs to be “+” in between each space of the name of the place you are searching, hence the substitute() formula.
Hope this helps
+1
a simple (lat-long) data type with a map_view on Open Street Map would be super useful.
Currently, geocoded addresses are saved as a base64 encoded string. However, there is no support for decoding base64 to a normal string, making it difficult to access the returned latitudes/longitudes. It would be great to have a way to save lat/lng values as strings! That way, these values can be easily used for external applications.