GMSMapView显示空白地图

我将GMSMapView添加到我的屏幕中,但是我只能看到我的位置图标和添加的标记。 为什么我看不到路,build筑等?

这是我的代码:

let camera = GMSCameraPosition.cameraWithLatitude(latitude, longitude: longitude, zoom: 11.5) let mapView = GMSMapView.mapWithFrame(CGRectZero, camera: camera) mapView.myLocationEnabled = true mapView.settings.myLocationButton = true self.view = mapView var marker = GMSMarker() marker.position = CLLocationCoordinate2DMake(location.latitude, location.longitude) marker.title = location.name marker.snippet = location.address marker.map = mapView 

任何build议?

有一个空白的地图的主要原因之一是密钥设置不正确

您是否正确设置了API密钥?

 [GMSServices provideAPIKey:yourAPIKey]; 

我有同样的问题,API密钥是正确的。 原因是在这行代码

 [[NSUserDefaults standardUserDefaults] setValue:@"ru" forKey:@"AppleLanguages"]; [[NSUserDefaults standardUserDefaults] synchronize];