iOS Question Load Maps using coordinates

ginsh

Member
Licensed User
Longtime User
Hi All ,

How to load Maps using coordinates in IOS. Something similar to the below android.

B4X:
Dim MapIntent As Intent
 Dim Location As String
Dim Lat as String
Dim Longt As string

Lat  = 25.562556
Longt = 55.565625


 Location = "geo:0,0?q=" & Lat & "," & Longt
      MapIntent.Initialize(MapIntent.ACTION_VIEW, Location )
      StartActivity(MapIntent)

Anyone please help.
 
Top