Я пытаюсь разработать приложение для iOS, которое поддерживает два местоположения. Одним из них является текущее местоположение, а другим - новое местоположение, которое будет определяться тем, где находится центр представления карты.
Дело в том, что я делаю обратное геокодирование с помощью API developer.here и уже использую функцию locationManager updateLocation в текущем местоположении, а затем обновляю ее, используя GET REQUEST, на их сервер.
Мой вопрос: как я могу поддерживать оба сразу? Потому что сейчас обновляется только текущее местоположение.
Функция locationManager:
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let locationList = locations[0] //holds the users locations in a list starting from the first location
let span:MKCoordinateSpan = MKCoordinateSpan.init(latitudeDelta: 0.01, longitudeDelta: 0.01) //determines how zoomed in we'll be on the user using the map
let currentLocation: CLLocationCoordinate2D = CLLocationCoordinate2DMake(locationList.coordinate.latitude, locationList.coordinate.longitude)
// let previousLocation: CLLocationCoordinate2D = CLLocationCoordinate2DMake(locationList.coordinate.latitude, locationList.coordinate.longitude) // for pin
let region: MKCoordinateRegion = MKCoordinateRegion.init(center: currentLocation, span: span)
mapView.setRegion(region, animated: true)
self.mapView.showsUserLocation = true //will show the users location as a blue dot
let center = getCenterLocation(for: mapView) // gets latitude and longitude coordinates
//code ...
do {
let result = try JSONDecoder().decode(Places.self, from: data)
DispatchQueue.main.async {
addrs = (result.response?.view?[0].result?[0].location?.address?.label)!
self.locationLabel.text = ("Your Current Location Is :" + addrs)
//print(addrs)
}
} catch let jsonError {
print("Error doing a JSONSerilization", jsonError)
}
Новый код местоположения:
let sessionForPin = URLSession.shared //creates a new url session
sessionForPin.dataTask(with: requestForPin) { (pin_data, pin_response, pin_error) in
// let response = response as? HTTPURLResponse,error == nil
// guard let data = data else {return}
guard let pin_data = pin_data,
let pin_response = pin_response as? HTTPURLResponse,
pin_error == nil else { // check for fundamental networking error
print("error", pin_error ?? "Unknown error")
return
}
guard (200 ... 299) ~= pin_response.statusCode else {
// check for http errors
print("statusCode should be 2xx, but is \(pin_response.statusCode)") //checks that we got a good response if not then it prints
print("response = \(pin_response)")
return
}
do {
let result = try JSONDecoder().decode(Places.self, from: pin_data)
DispatchQueue.main.async {
pin_addrs = (result.response?.view?[0].result?[0].location?.address?.label)!
self.newLocButton.setTitle( pin_addrs, for: .normal)
}
//code ..