From ec19010c63dfc41509ed4f8c76a9e0098f9e3e12 Mon Sep 17 00:00:00 2001 From: Julian Rex Date: Mon, 12 Feb 2018 15:04:13 -0500 Subject: [ios] Removed references to undocumented methods --- platform/ios/CHANGELOG.md | 1 - platform/ios/src/MGLMapViewDelegate.h | 8 -------- 2 files changed, 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; -- cgit v1.2.1