K Ksmith1192 Member Licensed User Longtime User Jun 17, 2013 #1 Is it possible to have a button, to where it opens up into the browser (or the actual google maps app) on their local android and open a Google Maps location?
Is it possible to have a button, to where it opens up into the browser (or the actual google maps app) on their local android and open a Google Maps location?
NJDude Expert Licensed User Longtime User Jun 17, 2013 #2 Something like this: B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW, "geo:0,0") StartActivity(i) Upvote 0
K Ksmith1192 Member Licensed User Longtime User Jun 17, 2013 #3 Where the geo:0,0 is the coordinates? Would it be possible to substitute an address into that? Upvote 0
NJDude Expert Licensed User Longtime User Jun 17, 2013 #4 You can use this: B4X: geo:latitude,longitude geo:latitude,longitude?z=zoom geo:0,0?q=my+street+address geo:0,0?q=business+near+city Also, you can Google that info above if you need more details. Upvote 0
You can use this: B4X: geo:latitude,longitude geo:latitude,longitude?z=zoom geo:0,0?q=my+street+address geo:0,0?q=business+near+city Also, you can Google that info above if you need more details.