I need to make a link that opens google maps external app on android and ios (apple maps) that opens with a marker in a certain coordinate. So far, through the research I found something similar to the one 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 do not know how to format the location. Has anyone gone through this?