In my app i am using Nokia Maps and Route to show the route from source to destination!!! I want the marker to move along the route from source to destination as we walk .
How can that be done!!!
Plzz help
Thanks
Viniita!!!
In my app i am using Nokia Maps and Route to show the route from source to destination!!! I want the marker to move along the route from source to destination as we walk .
How can that be done!!!
Plzz help
Thanks
Viniita!!!
just track the users location, and move a marker accordingly..
I think symbianyucca is suggesting that you attach a LocationListener to the LocationProvider object you are using to get the user's location, and each time your listener receives locationUpdated() event, update the position marker on the map.
Take a look at the documentation for the Location API, and you should see how the LocationListener and LocationProvider fit together. You just need to write your own class that implements LocationListener.
Graham.