In an app, I'm searching if at least one pdf viewer is installed, in order to open pdf files there.
In order to do that I use:
B4X:
Dim INTENT1 As Intent
INTENT1.Initialize(INTENT1.ACTION_VIEW,pdfFileName)
INTENT1.SetType("application/pdf")
INTENT1.Flags=1...
I know how to show one single location on Google map with the following code
B4X:
dim Url as string="https://maps.google.com/maps?q=Empire State Building, New York, NY"
Dim intent1 As Intent
If Url.StartsWith("https://maps.google.com/map") Then
intent1.Initialize(intent1.ACTION_VIEW...