NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: kboller on December 05, 2023, 07:23:36 AM
-
I'm trying to create a lookup button on a Nettalk WebForm that will call a native mobile map app with a physical address. Is that possible?
Thanks,
Kurt
-
unless your browser has some way to communicate with the local (not browser?) app, no.
-
I thought since you can select an address in a browser (from a web page), do a lookup and in Google select the map option that it would be possible. Maybe in some Rube Goldberg sort of way?
;)
Thanks,
Kurt
-
I dont fully understad what you need but if you need to open a google map you can add this in a button , onclick tab:
'https://www.google.com/maps/dir/?api=1&origin=' & p_web.GSV('_Latitude_') & ',' & p_web.GSV('_Longitude_') & '&destination='&ppar:latitud & ',' & ppar:longitud
-
Thank you Alberto, I think that will do the job.