2

Following is the way open the google maps directly:

Action: android.intent.action.VIEW

Activity class: com.google.android.maps.MapsActivity

Activity package com.google.android.apps.maps

How about for here maps?

BSRT app
  • 21
  • 1
  • Please see my reply [here](https://stackoverflow.com/a/62994098/5498630) with a working example – Michael Jul 20 '20 at 12:38

2 Answers2

1

Could you try this

Construct an Intent with the following properties:

Action com.here.maps.DIRECTIONS

Category CATEGORY_DEFAULT

Data URI here.directions://v1.0/mylocation/SRC_LAT,SRC_LNG,DST_LAT,DST_LNG?ref=<Referrer>&m=w

for more info see this

Logic
  • 2,230
  • 2
  • 24
  • 41
  • before apply this, we need download the here wego apps first right? Do u have extra information about the activity class, and activity package? – BSRT app Mar 20 '19 at 00:29
0

Don't know if this is still relevant, but I wrote a tutorial on how to open Waze, Google Maps, and HERE WeGo navigation through intents.

Dharman
  • 30,962
  • 25
  • 85
  • 135
Michael
  • 71
  • 3