Hi all, how can from button, show map location on google ? (without webview)
thanks
thanks
No problem, you can use that too:
B4X:Location = "geo:0,0?q=" & "100 Main St, State, ZIP"
Dim Intent1 As Intent
Dim a As String
a= "geo:" & LatS2 & "," & LongS2
Intent1.Initialize(Intent1.ACTION_VIEW,a )
Intent1.SetComponent("com.google.earth/.EarthActivity")
StartActivity(Intent1)
We’re also exposing the Google Maps for Android app intents available to your apps including displaying the map, searching, starting turn by turn navigation, and opening Street View so you can build upon the familiar and powerful maps already available on the device.