私のプロジェクトでこのコードを使用しています。私はUIKitとGoogleMapsをインポートしましたが、 "未解決の識別子CLLocationCoordinate2Dの使用"というエラーが表示されています。 UIViewController {未解決の識別子 'CLLocationCoordinate2D'の使用としてエラーが発生するのはなぜですか?
override func viewDidLoad() {
super.viewDidLoad()
let camera = GMSCameraPosition.camera(withLatitude: -33.86, longitude: 151.20, zoom: 6.0)
let mapView = GMSMapView.map(withFrame: CGRect.zero, camera: camera)
let view = mapView
// Creates a marker in the center of the map.
let marker = GMSMarker()
marker.position = CLLocationCoordinate2D(latitude: -33.86, longitude: 151.20)
marker.title = "Sydney"
marker.snippet = "Australia"
marker.map = mapView
}
}