#Swift 4.2
This is a sample code to get the latitude and longitude while using the app.
The label string is updated when the latitude and longitude of the terminal change.
Reference:
[iOS] 位置情報の取得 (Swift3編)
【CoreLocation】位置情報を取得する
If you use LocationManager, you must include the “purpose for which location information is used” in your Info.plist.
If you want to get location information only during startup
NSCattionWhenInUseUsageDescription
This app gets location information to guide you on the map
.
If you always want to get location information
NSCationAlwaysUsageDescription
.
This app always gets the location information to get the travel distance
.
When the location information is changed, a character will appear on the label.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import CoreLocation | |
class LocationViewController: UIViewController, CLLocationManagerDelegate { | |
var locationManager: CLLocationManager! | |
var label: UILabel! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
view.backgroundColor = .white | |
// 緯度、経度表示用のラベル | |
label = UILabel() | |
label.frame.size = CGSize(width: 200, height: 120) | |
label.center = view.center | |
label.numberOfLines = 0 | |
view.addSubview(label) | |
locationManager = CLLocationManager() | |
locationManager.requestWhenInUseAuthorization() | |
let status = CLLocationManager.authorizationStatus() | |
switch status { | |
case .restricted, .denied: | |
print("拒否されている") | |
break | |
case .notDetermined: | |
locationManager.delegate = self | |
locationManager.distanceFilter = 10 | |
locationManager.startUpdatingLocation() | |
case .authorizedWhenInUse, .authorizedAlways: | |
locationManager.delegate = self | |
locationManager.distanceFilter = 10 | |
locationManager?.startUpdatingLocation() | |
default: | |
break | |
} | |
} | |
// 緯度経度に変更があったら呼ばれる | |
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) { | |
let location = locations.first | |
let latitude = location?.coordinate.latitude | |
let longitude = location?.coordinate.longitude | |
print("latitude: \(latitude!)\nlongitude: \(longitude!)") | |
label.text = "latitude: \(latitude!)\nlongitude: \(longitude!)" | |
} | |
} | |