How Can I draw a dynamic route or path on Google maps in android ?
Can anyone give me an example ? How to draw my GPS location on map in real-time ?
How Can I draw a dynamic route or path on Google maps in android ?
Can anyone give me an example ? How to draw my GPS location on map in real-time ?
Just use the V2 of the API that it's as simple as using a for loop
PolylineOptions p = new PolylineOptions().width(3).color(0xFFEE8888);
for (int i = 0; i < data.length; i++) {
p.add(new LatLng(lat, lng));
}
mMap.addPolyline(p);