Skip to content

Start navigation using an address from other apps #41

@javaherisaber

Description

@javaherisaber

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions