If you have a website that contain ‘just’ your (business) address you can do better.
How?
You can use the links below to help your users navigate to you with one click.
This will save them the trouble to ‘select’, ‘copy’ and open their map app in order to get to you. Waze supports an API which enables developers to open the Waze client application through an external URL. The URL can be accessed from within your mobile web page or web app.

The following are the available parameters you can insert to your ‘a href’ tag:
| 1) Search for address |
waze://?q=< address search term > |
| 2) Center map to lat / lon |
waze://?ll=< lat >, < long > |
| 3) Navigate to lat / lon |
waze://?ll=< lat >, < long >,&navigate=yes |
| 4) Navigate to query and lat/lon |
waze://?q=< address string >,ll=< lat >,< long > & navigate=yes |
You should always start a drive with the address string (option 4) as the query and the lat long. It will correct any issues with place venues and ensure users are navigated to the entrance of a venue.
For example, the venue for Google I/O 2017:
< a href = "waze://?q=1+Amphitheatre+Pkwy,+Mountain+View,+CA+94043,ll=37.4268042,-122.0828119,&navigate=yes">Go to Shoreline Park< /a >
However, if you have cases where you want to send your users to a specific geo-location (e.g. in the middle of the forest) you should use option #3.
Btw, if you want to use Google Maps you can set this type of links:
http://maps.google.com/?daddr=1+Amphitheatre+Pkwy,+Mountain+View,+CA+94043
Good luck and go to nice places!

Discover more from Ido Green
Subscribe to get the latest posts sent to your email.
Thanks! How would you write it to search the page for an address and navigate to that? As is now, It’s just giving me an error.
Dear Ido, I want to send my location via URL or HTTP GET/POST data that Waze users or groups can see my location.