Authored by Thomas Rasch

Merge branch 'develop' of github.com:Alpstein/route-me into develop

... ... @@ -1137,7 +1137,7 @@
- (void)mapTiledLayerView:(RMMapTiledLayerView *)aTiledLayerView twoFingerDoubleTapAtPoint:(CGPoint)aPoint
{
[self zoomOutToNextNativeZoomAt:self.center animated:YES];
[self zoomOutToNextNativeZoomAt:[self convertPoint:self.center fromView:self.superview] animated:YES];
if (_delegateHasDoubleTapTwoFingersOnMap)
[delegate doubleTapTwoFingersOnMap:self at:aPoint];
... ... @@ -1145,7 +1145,7 @@
- (void)mapTiledLayerView:(RMMapTiledLayerView *)aTiledLayerView twoFingerSingleTapAtPoint:(CGPoint)aPoint
{
[self zoomOutToNextNativeZoomAt:self.center animated:YES];
[self zoomOutToNextNativeZoomAt:[self convertPoint:self.center fromView:self.superview] animated:YES];
if (_delegateHasSingleTapTwoFingersOnMap)
[delegate singleTapTwoFingersOnMap:self at:aPoint];
... ...