迅速。 Google地图视图显示问号而不是字母

时间:2016-02-07 16:58:36

标签: ios swift google-maps

为什么我的谷歌地图视图显示问号而不是字母:

screenshot of iphone

我实现地图视图的代码:

let camera = GMSCameraPosition.cameraWithLatitude(-33.86,
        longitude: 151.20, zoom: 6)
let mapView = GMSMapView.mapWithFrame(CGRectZero, camera: camera)
mapView.myLocationEnabled = true
self.view = mapView

let marker = GMSMarker()
marker.position = CLLocationCoordinate2DMake(-33.86, 151.20)
marker.title = "Sydney"
marker.snippet = "Australia"
marker.map = mapView

1 个答案:

答案 0 :(得分:0)

v1.8.0 (May 2014)有关于与您类似的问题的更新。 ticket raised表明它可能与语言设置有关。因此,您可以查看语言设置是否已更改,并希望它能解决问题。另外,请检查您是否使用了最新版本的Maps iOS SDK。