NetTalk Central

Author Topic: How do you do an address lookup on a mobile device's native map app from NT?  (Read 790 times)

kboller

  • Newbie
  • *
  • Posts: 24
    • View Profile
    • Email
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

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11186
    • View Profile
unless your browser has some way to communicate with the local (not browser?) app, no.

kboller

  • Newbie
  • *
  • Posts: 24
    • View Profile
    • Email
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


Alberto

  • Hero Member
  • *****
  • Posts: 1848
    • MSN Messenger - alberto-michelis@hotmail.com
    • View Profile
    • ARMi software solutions
    • Email
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
-----------
Regards
Alberto

kboller

  • Newbie
  • *
  • Posts: 24
    • View Profile
    • Email
Thank you Alberto, I think that will do the job.