It is possible to open route navigation from the current location to an address?
in Waze
and GoogleMaps
we can do it this way:
GoogleMaps
val uri = Uri.parse("google.navigation:q=Kruisstraat 77, Einhoven")
val intent = Intent(Intent.ACTION_VIEW, uri)
intent.setPackage("com.google.android.apps.maps")
startActivity(intent)
Waze
val uri = Uri.parse("https://waze.com/ul?q=Kruisstraat 77, Einhoven&navigate=yes")
val intent = Intent(Intent.ACTION_VIEW, uri)
intent.setPackage("com.waze")
startActivity(intent)
Is there a way to achieve this in Maps.me
?