hcarrasko
hcarrasko

Reputation: 2352

How can I plot routes "from" a position "to" another position on Google Maps v2?

How can I plot routes "from" a position "to" another position on Google Maps v2?

I did a simple aplication with the api v2, but now I would plot routes to different position in the map.

is it possible? thanks in advance! :)

Upvotes: 0

Views: 269

Answers (1)

yuva ツ
yuva ツ

Reputation: 3703

use - final Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://maps.google.com/maps?" + "saddr="+from +"&daddr="+to));

intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");

startActivity(intent);

Upvotes: 1

Related Questions