summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLMapViewDelegate.h
diff options
context:
space:
mode:
authorFredrik Karlsson <bjorn.fredrik.karlsson@gmail.com>2016-07-05 22:47:54 +0200
committerGitHub <noreply@github.com>2016-07-05 22:47:54 +0200
commit7b6ef80b5df75d30f7cbb6cedf88e28acbbed288 (patch)
tree625a23d26cfaa8b2697aa0609d8911ca196a0845 /platform/ios/src/MGLMapViewDelegate.h
parent546469459fd7a2350cff40fc3e8896fe3581c2f6 (diff)
downloadqtlocation-mapboxgl-7b6ef80b5df75d30f7cbb6cedf88e28acbbed288.tar.gz
[ios] fixes #5544 support canceling a drag operation and not by default (#5561)
Diffstat (limited to 'platform/ios/src/MGLMapViewDelegate.h')
-rw-r--r--platform/ios/src/MGLMapViewDelegate.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/platform/ios/src/MGLMapViewDelegate.h b/platform/ios/src/MGLMapViewDelegate.h
index c117c5d159..12a0658a51 100644
--- a/platform/ios/src/MGLMapViewDelegate.h
+++ b/platform/ios/src/MGLMapViewDelegate.h
@@ -284,27 +284,6 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (void)mapView:(MGLMapView *)mapView didAddAnnotationViews:(NS_ARRAY_OF(MGLAnnotationView *) *)annotationViews;
-#pragma mark Dragging Annotation Views
-
-/**
- Tells the delegate that the user has dragged the given annotation view to a new
- location.
-
- This method is called as soon as the user finishes dragging and drops the
- annotation view at a new location.
-
- To permanently move the corresponding annotation to the new geographic
- coordinate, set the annotation’s `coordinate` property to the given coordinate.
- Otherwise, the annotation view will return to the original location
- corresponding to that property’s value.
-
- @param mapView The map view containing the annotation view.
- @param annotationView The annotation view that was dragged.
- @param coordinate The geographic coordinate corresponding to the location to
- which the user has dragged the annotation view.
- */
-- (void)mapView:(MGLMapView *)mapView didDragAnnotationView:(MGLAnnotationView *)annotationView toCoordinate:(CLLocationCoordinate2D)coordinate;
-
#pragma mark Selecting Annotations
/**