Android Question Embed navigation in a App

imbault

Well-Known Member
Licensed User
Longtime User
Hi everybody,

To run an navigation Intent with an Address, there is no problem with B4A:
B4X:
           ' let's the user choose his navigation app
            dim geouri= "geo:?q=" & adress as string
            Log(geouri)
          
            mapIntent.Initialize(mapIntent.ACTION_VIEW,geouri)
            mapIntent.SetComponent("googlemaps")
            StartActivity(mapIntent)
I just wanted to know if it possible to embed a navigation "client" (like Google Maps, Waze or Here) in a APK in order to have kind of interaction:
When you get close to the destination address
When you arrive to the dest address.
 

imbault

Well-Known Member
Licensed User
Longtime User
Thank you @Erel , that's what I tought, is Navigation is possible in the GoogleMaps library ?
 
Last edited:
Upvote 0
Top