2
I need to make a link that opens external google maps app on android and Ios (apple maps) that opens with marker in a certain coordinate. So far, the research found something similar to the presented here:
iOS (launching Apple Maps):
<a href="maps:?q=LOCATION" target="_system">Map</a>
iOS (launching Google Maps):
<a href="comgooglemaps://?q=LOCATION" target="_system">Map</a>
Android:
<a href="geo:?q=LOCATION" target="_system">Map</a>
The problem with this code is that I don’t know how to format Location. Someone’s been through it?
Thank you very much!
– Mike Otharan