summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--platform/ios/CHANGELOG.md1
-rw-r--r--platform/ios/src/MGLMapViewDelegate.h8
2 files changed, 0 insertions, 9 deletions
diff --git a/platform/ios/CHANGELOG.md b/platform/ios/CHANGELOG.md
index 3aa9ea1b85..7eb3fd8bf9 100644
--- a/platform/ios/CHANGELOG.md
+++ b/platform/ios/CHANGELOG.md
@@ -5,7 +5,6 @@ Mapbox welcomes participation and contributions from everyone. Please read [CONT
## 3.7.4
* Added the `MGLTileSourceOptionTileCoordinateBounds` option to create an `MGLTileSource` that only supplies tiles within a specific geographic bounding box. ([#11141](https://github.com/mapbox/mapbox-gl-native/pull/11141))
-* Added optional delegate methods that provide a reason for a camera change. These are called in preference over the existing methods that do not have the parameter. ([#11151](https://github.com/mapbox/mapbox-gl-native/pull/11151))
## 3.7.3 - January 10, 2018
diff --git a/platform/ios/src/MGLMapViewDelegate.h b/platform/ios/src/MGLMapViewDelegate.h
index 704ff14112..0368d8413c 100644
--- a/platform/ios/src/MGLMapViewDelegate.h
+++ b/platform/ios/src/MGLMapViewDelegate.h
@@ -41,8 +41,6 @@ NS_ASSUME_NONNULL_BEGIN
method returns `YES`, this camera becomes the map view’s camera.
@return A Boolean value indicating whether the map view should stay at
`oldCamera` or change to `newCamera`.
-
- @note If `-mapView:shouldChangeFromCamera:toCamera:reason:` is implemented this method will not be called.
*/
- (BOOL)mapView:(MGLMapView *)mapView shouldChangeFromCamera:(MGLMapCamera *)oldCamera toCamera:(MGLMapCamera *)newCamera;
@@ -80,8 +78,6 @@ NS_ASSUME_NONNULL_BEGIN
@param mapView The map view whose viewpoint will change.
@param animated Whether the change will cause an animated effect on the map.
-
- @note If `-mapView:regionWillChangeWithReason:animated:` is implemented this method will not be called.
*/
- (void)mapView:(MGLMapView *)mapView regionWillChangeAnimated:(BOOL)animated;
@@ -113,8 +109,6 @@ NS_ASSUME_NONNULL_BEGIN
as possible to avoid affecting performance.
@param mapView The map view whose viewpoint is changing.
-
- @note If `-mapView:regionIsChangingWithReason:` is implemented this method will not be called.
*/
- (void)mapViewRegionIsChanging:(MGLMapView *)mapView;
@@ -148,8 +142,6 @@ NS_ASSUME_NONNULL_BEGIN
@param mapView The map view whose viewpoint has changed.
@param animated Whether the change caused an animated effect on the map.
-
- @note If `-mapView:regionDidChangeWithReason:animated:` is implemented this method will not be called.
*/
- (void)mapView:(MGLMapView *)mapView regionDidChangeAnimated:(BOOL)animated;