summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--platform/ios/src/MGLMapView.mm10
1 files changed, 8 insertions, 2 deletions
diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm
index ea4a482ccc..dee339f4e9 100644
--- a/platform/ios/src/MGLMapView.mm
+++ b/platform/ios/src/MGLMapView.mm
@@ -389,8 +389,14 @@ public:
}
NSString *styleURLString = @(self.mbglMap.getStyle().getURL().c_str()).mgl_stringOrNilIfEmpty;
- MGLAssert(styleURLString, @"Invalid style URL string %@", styleURLString);
- return styleURLString ? [NSURL URLWithString:styleURLString] : nil;
+
+ if (!styleURLString)
+ {
+ MGLLogInfo(@"Warning: Invalid style URL string %@", styleURLString);
+ }
+
+ return styleURLString ? [NSURL URLWithString:styleURLString] :
+ [MGLStyle streetsStyleURLWithVersion:MGLStyleDefaultVersion];
}
- (void)setStyleURL:(nullable NSURL *)styleURL