I am building a android/ web application. In with user can save a set of gps data ( latitude and longitude ) in our DB for eg my db looks like
Id | UserId | time | latitude | longitude
-----------------------------------------------------------------------------------
1 | 12 | 2012-05-05 11:11:01 | 12.21547 | 22.1245789
1 | 12 | 2012-05-05 12:13:01 | 12.21547 | 22.1245779
1 | 12 | 2012-05-05 13:11:01 | 12.27547 | 22.1745789
1 | 12 | 2012-05-05 14:11:01 | 12.30547 | 22.3045789
1 | 12 | 2012-05-05 14:22:01 | 12.36547 | 22.3555789
------------------------------------------------------------------------------------
My question is can I create a path Google Map using the above data. Straightly .... I want to draw the user traveled path in Google map with the above data
Thanks in advance