I have a button that navigates to the map with a certain link. Here is my code:
Intent open2 = new Intent(android.content.Intent.ACTION_VIEW);
open2.setData(Uri.parse("https://www.google.com.eg/maps/dir/''/point+90+mall+location/data=!4m5!4m4!1m0!1m2!1m1!1s0x145822591a17706b:0xc9f886adcffbb941?sa=X&ved=0ahUKEwiF5-KS6t3SAhWoLcAKHWI-CEoQ9RcIeTAM"));
startActivity(open2);
But when I click from my mobile, it goes to the map. But it gives this to me:
Cannot find the starting point
How can I fix that?