简体   繁体   中英

Google maps paths

I want to set paths on a Google maps. I've done some coding and able to draw single paths on a Google map. I want to know if there is any method to accomplish my objective. How can I do this?

want to show multiple paths between two Geo coordinators.

I'm new to this and can you please help me to do this. Thank you.

try this

String uri = "http://maps.google.com/maps?saddr=" + (srcLocation.getLatitude())+","+(srcLocation.getLongitude())+"&daddr="+destLat+","+destLon;

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri));

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

Draw route using this. This is for one route.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM