RC3 Gesture Broke when used on Ios

There is a 404 for:

I need it since i migrated an app from beta.34 to rc.3, on ios, using gesture litterally broke the Gesture globally

import { Directive, ElementRef } from '@angular/core';
import { Gesture } from 'ionic-angular';

@Directive({
  selector: 'map-svg'
})
export class MapSvg implements OnInit {
  public gesture: Gesture;

  constructor(public el: ElementRef) {}

  ngOnInit() {
    this.gesture = new Gesture(this.el.nativeElement, {
      recognizers: [
        [Hammer.Pan, {direction: Hammer.DIRECTION_ALL}],
        [Hammer.Tap],
        [Hammer.Pinch]
      ]
    });
  }
}

With this example, when navigating to a page who have the directive <map-svg></map-svg> there’s no gesture available, event the back button doesn’t work anymore.