diff options
author | Jason Wray <jason@mapbox.com> | 2019-05-02 17:25:26 -0700 |
---|---|---|
committer | Jason Wray <friedbunny@users.noreply.github.com> | 2019-05-09 14:52:44 -0700 |
commit | 49b8e0a6265f8a995fb202a88cd47af8366eeb71 (patch) | |
tree | 7d4e4610feb93a5a7459ff9f76c1968593180089 /platform | |
parent | a53c4593d64bbe23a34b0ade142c94d09f64b02c (diff) | |
download | qtlocation-mapboxgl-49b8e0a6265f8a995fb202a88cd47af8366eeb71.tar.gz |
[ios] Remove obsolete telemetry gesture events
Diffstat (limited to 'platform')
-rw-r--r-- | platform/ios/src/MGLMapView.mm | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm index fdd91dacd7..a4f994a2f4 100644 --- a/platform/ios/src/MGLMapView.mm +++ b/platform/ios/src/MGLMapView.mm @@ -1724,8 +1724,6 @@ public: if (pan.state == UIGestureRecognizerStateBegan) { - [self trackGestureEvent:MMEEventGesturePanStart forRecognizer:pan]; - self.userTrackingMode = MGLUserTrackingModeNone; [self notifyGestureDidBegin]; @@ -1766,17 +1764,6 @@ public: } [self notifyGestureDidEndWithDrift:drift]; - - // metrics: pan end - CGPoint pointInView = CGPointMake([pan locationInView:pan.view].x, [pan locationInView:pan.view].y); - CLLocationCoordinate2D panCoordinate = [self convertPoint:pointInView toCoordinateFromView:pan.view]; - int zoom = round([self zoomLevel]); - - [MGLMapboxEvents pushEvent:MMEEventTypeMapDragEnd withAttributes:@{ - MMEEventKeyLatitude: @(panCoordinate.latitude), - MMEEventKeyLongitude: @(panCoordinate.longitude), - MMEEventKeyZoomLevel: @(zoom) - }]; } } @@ -1794,8 +1781,6 @@ public: if (pinch.state == UIGestureRecognizerStateBegan) { - [self trackGestureEvent:MMEEventGesturePinchStart forRecognizer:pinch]; - self.scale = powf(2, [self zoomLevel]); [self notifyGestureDidBegin]; @@ -1898,8 +1883,6 @@ public: if (rotate.state == UIGestureRecognizerStateBegan) { - [self trackGestureEvent:MMEEventGestureRotateStart forRecognizer:rotate]; - self.angle = MGLRadiansFromDegrees(*self.mbglMap.getCameraOptions().bearing) * -1; if (self.userTrackingMode != MGLUserTrackingModeNone) @@ -1991,8 +1974,6 @@ public: { if (singleTap.state != UIGestureRecognizerStateRecognized) return; - [self trackGestureEvent:MMEEventGestureSingleTap forRecognizer:singleTap]; - if (self.mapViewProxyAccessibilityElement.accessibilityElementIsFocused) { id nextElement; @@ -2096,8 +2077,6 @@ public: if ([self _shouldChangeFromCamera:oldCamera toCamera:toCamera]) { - [self trackGestureEvent:MMEEventGestureDoubleTap forRecognizer:doubleTap]; - mbgl::ScreenCoordinate center(gesturePoint.x, gesturePoint.y); self.mbglMap.easeTo(mbgl::CameraOptions().withZoom(newZoom).withAnchor(center), MGLDurationFromTimeInterval(MGLAnimationDuration)); @@ -2136,8 +2115,6 @@ public: if ([self _shouldChangeFromCamera:oldCamera toCamera:toCamera]) { - [self trackGestureEvent:MMEEventGestureTwoFingerSingleTap forRecognizer:twoFingerTap]; - mbgl::ScreenCoordinate center(gesturePoint.x, gesturePoint.y); self.mbglMap.easeTo(mbgl::CameraOptions().withZoom(newZoom).withAnchor(center), MGLDurationFromTimeInterval(MGLAnimationDuration)); @@ -2160,8 +2137,6 @@ public: if (quickZoom.state == UIGestureRecognizerStateBegan) { - [self trackGestureEvent:MMEEventGestureQuickZoom forRecognizer:quickZoom]; - self.scale = powf(2, [self zoomLevel]); self.quickZoomStart = [quickZoom locationInView:quickZoom.view].y; @@ -2207,7 +2182,6 @@ public: if (twoFingerDrag.state == UIGestureRecognizerStateBegan) { initialPitch = *self.mbglMap.getCameraOptions().pitch; - [self trackGestureEvent:MMEEventGesturePitchStart forRecognizer:twoFingerDrag]; [self notifyGestureDidBegin]; } @@ -2410,20 +2384,6 @@ public: return degrees; } -- (void)trackGestureEvent:(NSString *)gestureID forRecognizer:(UIGestureRecognizer *)recognizer -{ - CGPoint pointInView = CGPointMake([recognizer locationInView:recognizer.view].x, [recognizer locationInView:recognizer.view].y); - CLLocationCoordinate2D gestureCoordinate = [self convertPoint:pointInView toCoordinateFromView:recognizer.view]; - int zoom = round([self zoomLevel]); - - [MGLMapboxEvents pushEvent:MMEEventTypeMapTap withAttributes:@{ - MMEEventKeyLatitude: @(gestureCoordinate.latitude), - MMEEventKeyLongitude: @(gestureCoordinate.longitude), - MMEEventKeyZoomLevel: @(zoom), - MMEEventKeyGestureID: gestureID - }]; -} - #pragma mark - Attribution - - (void)showAttribution:(id)sender |