Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch Nokia HERE Maps iOS via API

Is there a documented API for launching Nokia's HERE Maps iOS app for turn-by-turn navigation ?

like image 924
Viraf Avatar asked Dec 09 '22 19:12

Viraf


2 Answers

here-place://lat,lon e.g. here-place://48.866833,2.355411

to open Here on a given place.

here-route://lat1,lon1,name1/lat2,lon2,name2

to start turn by turn navigation from lat1,lon1 to lat2,lon2.

here-route:///lat2,lon2,name2

to start a turn by turn navigation from the user location to lat2,lon2.

EDIT: It seems that name fields now support URL percent escaping to encode space and other characters (Tested in Here WeGo v2.0.11. Thank you marcel for the head up).

like image 143
FKDev Avatar answered Dec 11 '22 07:12

FKDev


Changed to here-location://lat,lon,name in the latest versions (probably 1.2 or so). name is optional.

here-place and here-route give Couldn't open link error, so probably syntax changed there. Maybe you can specify addresses there, but it was out of scope of my research.

like image 33
rshev Avatar answered Dec 11 '22 07:12

rshev