summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLMapView.mm
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/src/MGLMapView.mm')
-rw-r--r--platform/ios/src/MGLMapView.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm
index 385dc86392..a445b0890f 100644
--- a/platform/ios/src/MGLMapView.mm
+++ b/platform/ios/src/MGLMapView.mm
@@ -963,19 +963,19 @@ public:
[self updateAttributionAlertView];
- if (!CGRectContainsRect(self.bounds, self.attributionButton.frame)) {
+ if (!CGRectContainsRect(self.bounds, self.attributionButton.mgl_frameForTransformIdentity)) {
[NSException raise:NSInvalidArgumentException
format:@"The attribution is not in the visible area of the mapview. Please check your position and offset settings"];
}
- if (!CGRectContainsRect(self.bounds, self.scaleBar.frame)) {
+ if (!CGRectContainsRect(self.bounds, self.scaleBar.mgl_frameForTransformIdentity)) {
[NSException raise:NSInvalidArgumentException
format:@"The scaleBar is not in the visible area of the mapview. Please check your position and offset settings"];
}
- if (!CGRectContainsRect(self.bounds, self.compassView.frame)) {
+ if (!CGRectContainsRect(self.bounds, self.compassView.mgl_frameForTransformIdentity)) {
[NSException raise:NSInvalidArgumentException
format:@"The compassView is not in the visible area of the mapview. Please check your position and offset settings"];
}
- if (!CGRectContainsRect(self.bounds, self.logoView.frame)) {
+ if (!CGRectContainsRect(self.bounds, self.logoView.mgl_frameForTransformIdentity)) {
[NSException raise:NSInvalidArgumentException
format:@"The logoView is not in the visible area of the mapview. Please check your position and offset settings"];
}