How can we run Here Maps embedded in an Android app specifically for Nokia X? We would like the app route to a location we will define from the current location.
In Google Maps we did it as follows.
Uri.parse("http://maps.google.com/maps? saddr="+myLocation.latitude+","+myLocation.longitude+"&daddr="+latLng.longitude+","+latLng.latitude));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_LAUNCHER );
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
Thanks