Authored by Thomas Rasch

o Added the scrollViewDidEndScrollingAnimation: delegate method from UIScrollVie…

…w which now calls the mapview's afterMapMove: delegate method
... ... @@ -1011,6 +1011,12 @@
[delegate afterMapMove:self];
}
- (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView
{
if (_delegateHasAfterMapMove)
[delegate afterMapMove:self];
}
- (void)scrollViewWillBeginZooming:(UIScrollView *)scrollView withView:(UIView *)view
{
_mapScrollViewIsZooming = YES;
... ...