初投稿です。よろしく御願い致します。
ピンをMapViewに配置しようとしたのですがこのようなエラーが出てしまいました。
https://www.letitride.jp/entry/2019/08/23/104809このサイトに従って行ったのでコード間違えはないと思ったのですがこのようなエラーが沢山出てしまいました。
お手数ですが、どなたかご指摘御願い致します。
swift
1コード 2import UIKit 3import MapKit 4import CoreLocation 5 6class ViewController: UIViewController ,MKMapViewDelegate, 7 CLLocationManagerDelegate{ 8 9 @IBOutlet weak var PlusButton: UIButton! 10 11 var locationManager = CLLocationManager() 12 13 // MapViewのインスタンス生成. 14 let mapView = MKMapView() 15 16 let annotation = MKPointAnnotation() 17 //ピンの位置 18 let latitude = 35.72949166949532 19 lett longitude = 139.77815044444452 20 annotation.coordinate = CLLocationCoordinate2DMake(latitude, longitude) 21 //ピンにメッセージを付随する 22 annotation.title = "タイトル" 23 annotation.subtitle = "サブタイトル" 24 //ピンを追加 25 mapView.addAnnotation(annotation)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/24 09:01
退会済みユーザー
2020/05/24 09:01 編集
退会済みユーザー
2020/05/24 09:09
退会済みユーザー
2020/05/24 09:09
退会済みユーザー
2020/05/24 09:18
退会済みユーザー
2020/05/24 09:20 編集
退会済みユーザー
2020/05/24 09:23
退会済みユーザー
2020/05/24 09:33
退会済みユーザー
2020/05/24 10:43