I have been trying to move annotation (custom) on map from one coordinate to another but couldn't find a better way to do it. I have searched online but couldn't find anything useful.
Anyone who was successful in implementing such functionality (in swift)?
EDIT
var annMove: CustomAnnotation = CustomAnnotation();
annMove.title = "Moving annotation"
annMove.subtitle = ""
annMove.imageName = "blue_pin.png"
self.mapView.addAnnotation(annMove);
for i in 0..<route.count
{
annMove.coordinate = route[i];
}
CustomAnnotation
class CustomAnnotation: MKPointAnnotation {
var imageName: String!
}
When I ran the code, all I can see is an annotation at coordinate route[0]
. If the annotation did move then at least the it should be at the coordinate route[route.count-1]
but not route[0]
I hope this might help. It worked for me.