BSRT app
BSRT app

Reputation: 21

How to open link the apps to open the here maps directly?

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?

Upvotes: 2

Views: 1009

Answers (2)

Michael
Michael

Reputation: 71

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.

Upvotes: 0

Logic
Logic

Reputation: 2258

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

Upvotes: 1

Related Questions