I want to track a person's movement on mapview in my iphone. I am using mapview which shows user's current location as well as one more pin which denotes another persons location say person A.I want to track person A physical Movement on my iphone mapview. That means if person A is moves from one location to another,the icon or the pin which denotes person A's location should move from one location to another on the mapview on my iphone. I want to track person A live movement on mapview.Is it possible?If Yes please explain how?Please help.

link|improve this question

78% accept rate
So what's the exact question? Which part of those requirements are you stuck at? What have you tried? – Anna Karenina Dec 13 '11 at 16:07
I want to track person A movement on mapview? – Akshay Aher Dec 14 '11 at 6:34
yes the thing you want to do, it is possible... – samfisher Dec 14 '11 at 6:46
feedback

1 Answer

up vote 0 down vote accepted

This is not hard. I assume that you are using a server which will communicate between the two devices. In this case when the person A moves you can update his location coordinates to your server. You can get his/her location coordinates using the

- (void)locationManager:(CLLocationManager *)manager 
    didUpdateToLocation:(CLLocation *)newLocation 
           fromLocation:(CLLocation *)oldLocation  

delegate method. At the same time you can get person A's location coordinates from the server and keep updating your mapview. The pin will move. Just set the pin drop animation to NO.

link|improve this answer
thanks for the answer...:) – Akshay Aher Mar 30 at 9:49
feedback

Your Answer

 
or
required, but never shown

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