I have a web app where if a user clicks on a link it should open up a map. The best solution that I can think of is to open up a new tab/window to google maps using the target="_blank"
attribute.
But I think that it would be best to open up the device's map app instead of google map.
I know that you can have the user's phone app to pop when the user clicks on a phone number with the href attribute pointing to tel:<the phone number>
. I am wondering if this is also possible with the map app.
Is there a way to allow an anchor tag to open the mobile device's map app when the user clicks it?