/*class ViewController: UIViewController,CLLocationManagerDelegate {
var locationManager: CLLocationManager!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
locationManager = CLLocationManager() locationManager.delegate = self locationManager.startUpdatingLocation() locationManager.requestWhenInUseAuthorization() } func locationManager(_ manager: CLLocationManager, didUpdateLocatudetions locations:[CLLocation]){ let longitude = (locations.last?.coordinate.longitude.description)! let latitude = (locations.last?.coordinate.latitude.description)! print("[DBG]longitude : " + longitude) print("[DBG]latitude : " + latitude) }
}*/
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/11 08:50
2020/05/11 09:50
2020/05/11 09:51 編集
退会済みユーザー
2020/05/11 11:09