From 2417d13f08fc0457b6e9d38a1da7df110a71837a Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Tue, 4 Apr 2017 20:17:15 +0300 Subject: [ios] Initialize MGLMapView with OpenGL ES 2.0 minimum texture size --- platform/ios/test/MGLAnnotationViewTests.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/ios/test/MGLAnnotationViewTests.m b/platform/ios/test/MGLAnnotationViewTests.m index 212de9a405..c0978eaf65 100644 --- a/platform/ios/test/MGLAnnotationViewTests.m +++ b/platform/ios/test/MGLAnnotationViewTests.m @@ -51,7 +51,7 @@ static NSString * const MGLTestAnnotationReuseIdentifer = @"MGLTestAnnotationReu - (void)setUp { [super setUp]; - _mapView = [[MGLMapView alloc] initWithFrame:CGRectZero]; + _mapView = [[MGLMapView alloc] initWithFrame:CGRectMake(0, 0, 64, 64)]; _mapView.delegate = self; } -- cgit v1.2.1