Is there a way to open another application with angularJs on steroids? I wanna open the default gps navigator of the system passing it the latitude and the longitude of the starting and the destination location from my own application.
Asked
Active
Viewed 306 times
1 Answers
0
Is this something you want to to programmatically or through a ui-click?
How about using a tag with the geo-prefix like this?
<a href="geo:38.897096,-77.036545">open map</a>
Or use steroids.openURL()
steroids.openURL("geo:38.897096,-77.036545");
As described here: http://docs.appgyver.com/en/edge/steroids_Steroids%20App%20and%20Device_steroids.openURL.md.html

Ngzungu
- 263
- 1
- 7
-
Thank you, I'll try it and I'll let you know. – Vincenzo Jun 22 '15 at 10:51
-
How did it go? Please accept if it solved your problem. – Ngzungu Jun 22 '15 at 20:47