Authored by Thomas Rasch

o Prevent double long press gesture recognizer activation

... ... @@ -96,6 +96,8 @@
- (void)handleLongPress:(UILongPressGestureRecognizer *)recognizer
{
if (recognizer.state != UIGestureRecognizerStateBegan) return;
if ([delegate respondsToSelector:@selector(mapTiledLayerView:longPressAtPoint:)])
[delegate mapTiledLayerView:self longPressAtPoint:[recognizer locationInView:mapView]];
}
... ...