Open the application with native cards from the phone screen saver

Is there a phone call solution for opening an application with my own cards, located in the center or with a route?

+6
source share
2 answers

I realized, just using the window layout, and the device intercepts it ...

$('#map').bind('tap', function(){ var url = 'http://maps.google.com/maps?'; url += 'q=[place_name]'; url += '&near='; url += [lat]; url += ','; url += [lon]; url += '&z=15'; // open the native maps app by calling window location window.location = url; }); 
+8
source

To open the iOS6 Maps application, use the maps.apple.com domain.

Cm:

+1
source

Source: https://habr.com/ru/post/902640/