swiftによる地図検索アプリケーションを開発中で問題が生じました
下記リンクを参考にしながら、至ってシンプルな地図表示アプリを開発しているのですが、
https://developers.google.com/maps/documentation/ios-sdk/start?hl=ja
swift
1import UIKit 2import GoogleMaps 3 4class ViewController: UIViewController { 5 6 override func viewDidLoad() { 7 super.viewDidLoad() 8 // Do any additional setup after loading the view. 9 // Do any additional setup after loading the view. 10 // Create a GMSCameraPosition that tells the map to display the 11 // coordinate -33.86,151.20 at zoom level 6. 12 13 let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 6.0) 14 let mapView = GMSMapView.map(withFrame: self.view.frame, camera: camera) 15 self.view.addSubview(mapView) 16 17 // Creates a marker in the center of the map. 18 let marker = GMSMarker() 19 marker.position = CLLocationCoordinate2D(latitude: -33.86, longitude: 151.20) 20 marker.title = "Sydney" 21 marker.snippet = "Australia" 22 marker.map = mapView 23 } 24}
APIキーなどは正しく呼び出せているとは思うのですが、何が問題なのか皆目見当がつかず、エラ〜メッセージも生じていないため、困っております
因みに、
2020-05-01 00:31:12.141190+0900 MapSearchingTest[20614:252324] Metal GPU Frame Capture Enabled 2020-05-01 00:31:12.141432+0900 MapSearchingTest[20614:252324] Metal API Validation Enabled 2020-05-01 00:31:12.355887+0900 MapSearchingTest[20614:252324] libMobileGestalt MobileGestalt.c:1647: Could not retrieve region info 2020-05-01 00:31:12.631569+0900 MapSearchingTest[20614:252324] Google Maps SDK for iOS and Google Places SDK for iOS version: 3.8.0.0
どなたかお力添え願いたいです
どうかよろしくお願いします