Jump to content

Google Maps -- Directions Syntax


This topic is 6255 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hi Guys,

Let([

Initial_Street = YourStreetfield;

Initial_Suburb = YourSuburbField;

Initial_PostCode = YourPostCodeField;

Initial_State = YourStateField;

Initial_Country = YourCountryField;

Dest_Street = YourStreetField;

Dest_Suburb = YourSuburbField ;

Dest_PostCode = YourPostCodeField;

Dest_State = YourStateField;

Dest_Country = YourCountryField

];

"http://maps.google.com/maps?f=d&hl=en&saddr=" &

//Initial Address

Substitute(Initial_Street & ", " & Initial_PostCode & ", " & Initial_State & ", " & Initial_Country ; " " ; "+" )

& "&daddr=" &

//Dest Address

Substitute(Dest_Street & ", " & Dest_PostCode & ", " & Dest_State & ", " & Dest_Country ; " " ; "+" )

)

Fill in the blanks in the let statement above and it should give you the correct url.

Link to comment
Share on other sites

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.