I have written a small application for a handheld device using JavaScript and Google Maps API's, now II need to move my marker icon anywhere on the map along a route using a timer function. I have a man icon and I need to move it automatically on the map. How can I do this?
|
|
|||||
|
|
|
Unfortunately, there is no automatic-marker-movement function in the official GMaps collection. However, if you have a GRoute, that would mean you have a set of points. To loop through the route steps, you could use something like this:
Of course, you'll probably want to do this asynchronously using the timers:
For even smoother movement, you could interpolate the points from those you already have. |
|||
|
|
|
|
Look at exapmles of Google Maps code. There are more cool examples that could help you. |
||
|
|
|
|
It doesn't move something automatically, but you should check out the Google Drive experiment by phatfusion. Looking at the code might help you out. |
||
|
|
