summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-02-01 20:48:28 -0800
committerMinh Nguyễn <mxn@1ec5.org>2016-02-01 20:55:55 -0800
commit7694eebe8837f45540687aea65301a83243d74f7 (patch)
treefb2a8c5ff8fbcea93cc0e856d1f8e1a9f320e92c /platform
parent909832624e3c3afa28f98e109c5bae188a4f3120 (diff)
downloadqtlocation-mapboxgl-7694eebe8837f45540687aea65301a83243d74f7.tar.gz
[ios] Renamed -showAnnotations:withEdgeInsets:animated:
Renamed -showAnnotations:withEdgeInsets:animated: to -showAnnotations:edgePadding:animated: for consistency with other methods. Reworded documentation comments to avoid hard-coding too many specifics that are prone to getting outdated.
Diffstat (limited to 'platform')
-rw-r--r--platform/ios/src/MGLMapView.mm8
1 files changed, 3 insertions, 5 deletions
diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm
index beb0438591..c9d3145e2e 100644
--- a/platform/ios/src/MGLMapView.mm
+++ b/platform/ios/src/MGLMapView.mm
@@ -2958,12 +2958,10 @@ mbgl::Duration MGLDurationInSeconds(NSTimeInterval duration)
UIEdgeInsets edgeInsets = UIEdgeInsetsMake(yPadding, xPadding, yPadding, xPadding);
- [self showAnnotations:annotations
- withEdgeInsets:edgeInsets
- animated:animated];
+ [self showAnnotations:annotations edgePadding:edgeInsets animated:animated];
}
-- (void)showAnnotations:(NS_ARRAY_OF(id <MGLAnnotation>) *)annotations withEdgeInsets:(UIEdgeInsets)edgeInsets animated:(BOOL)animated
+- (void)showAnnotations:(NS_ARRAY_OF(id <MGLAnnotation>) *)annotations edgePadding:(UIEdgeInsets)insets animated:(BOOL)animated
{
if ( ! annotations || ! annotations.count) return;
@@ -2982,7 +2980,7 @@ mbgl::Duration MGLDurationInSeconds(NSTimeInterval duration)
}
[self setVisibleCoordinateBounds:MGLCoordinateBoundsFromLatLngBounds(bounds)
- edgePadding:edgeInsets
+ edgePadding:insets
animated:animated];
}