vote up 0 vote down star

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?

flag
I edited the title to reflect the contents of the question. @jyothi: when posting a question, please take your time to review the contents of it. With just 2 minutes of extra reviewing, you can improve the quality by 100%, with an expectation of more and better answers. – Aron Rotteveel Mar 20 at 6:59
k sir thank u, can u answer my question – jyothi Mar 20 at 7:37

3 Answers

vote up 2 vote down

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:

for (var c = 0; c < yourroute.getNumSteps(); c++) { 
    yourmarker.setLatLng(yourroute.getStep(c).getLatLng());
}

Of course, you'll probably want to do this asynchronously using the timers:

function moveToStep(yourmarker,yourroute,c) {
    if {yourroute.getNumSteps() > c) {
        yourmarker.setLatLng(yourroute.getStep(c).getLatLng());
        window.setTimeout(function(){
            moveToStep(yourmarker,yourroute,c+1);
        },500);
    }
}

moveToStep(marker,route,0);

For even smoother movement, you could interpolate the points from those you already have.

link|flag
vote up 0 vote down

Look at exapmles of Google Maps code. There are more cool examples that could help you.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.