I use the code below to start google navigator to a specified query adress , does anyone knows who to use the same function with Sygic navigation or other well known navigation systems ?
B4X:
Dim mapIntent As Intent
Dim URI As String
Dim destionation as string
URI = "google.navigation:q=" & destionation
mapIntent.Initialize(mapIntent.ACTION_VIEW,URI)
mapIntent.SetComponent("google.navigation")
StartActivity(mapIntent)