Reputation: 8391
I am trying to make a link from my cordova app to directly open the Waze app, but this opens something like "browserly" waze, instead of the real app. This is what I have tried:
<a href="https://www.waze.com/he/livemap?ll=40.75889500%2C-73.98513100&navigate=yes&zoom=17" external>
Open waze
</a>
Upvotes: 0
Views: 230
Reputation: 91
It's actually mentioned in docs.
https://www.waze.com/ul
is the base URL for deeplinks.
So this should work.
<a href="https://www.waze.com/ul/livemap?ll=40.75889500%2C-73.98513100&navigate=yes&zoom=17" external>
Open waze
</a>
Upvotes: 0