ユーザーの場所が更新されたときにいつでも表示しようとしています。私は多くの異なるリスナーを試しましたが、私はこれを理解していないようです。 ユーザーの場所が更新されたかどうかをテストする最も効果的で効率的な方法は何ですか?Swift 3 Google MapとMapKit API - ユーザーの現在地が更新された場合
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let location = locations[0]
let lat = location.coordinate.latitude
let long = location.coordinate.longitude
print(lat, long)
let currentLocation = CLLocationCoordinate2DMake(lat, long)
let lastLocation = CLLocationCoordinate2DMake((locations.last?.coordinate.latitude)!, (locations.last?.coordinate.longitude)!)
let camera = GMSCameraPosition.camera(withLatitude: lat, longitude: long, zoom: 15)
self.mapView.animate(to: camera)
let geocoder = GMSGeocoder()
if currentLocation.latitude != lastLocation.latitude || currentLocation.longitude != lastLocation.longitude {
let alertController = UIAlertController(title: "Location Update", message: "Current location has been updated", preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .cancel, handler: nil)
alertController.addAction(defaultAction)
self.present(alertController, animated: true, completion: nil)
} else {
print("no update change")
}
geocoder.reverseGeocodeCoordinate(currentLocation) { (response, error) in
if let address = response?.firstResult() {
let lines = address.lines!
self.currentLocationLabel.text = lines.joined(separator: "\n")
}
}
// self.manager.stopUpdatingLocation()
}
didUpdateLocationsはあなたのためには機能しませんか? –
それはブールですか? didUpdateLocations –