我正在关注谷歌地图教程,地图在模拟器上完美展示但是当我尝试在设备上运行我的谷歌地图应用程序时,地图没有显示出来。有人可以帮我解决这个问题吗?
我正在粘贴我在我的Google地图的ViewController中编写的viewDidLoad代码。
let camera = GMSCameraPosition.cameraWithLatitude(1.285, longitude: 103.848, zoom: 12)
let mapView = GMSMapView.mapWithFrame(CGRectZero, camera: camera)
mapView.mapType = kGMSTypeNormal
mapView.indoorEnabled = false
mapView.settings.compassButton = true
mapView.settings.myLocationButton = true
self.view = mapView