'How to link from Cordova app to Waze deep linking?

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>


Solution 1:[1]

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>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Karan Gandhi