09/25

09/26

09/27

extension DefaultLocationManager: CLLocationManagerDelegate {
    func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        if let coordinate = locations.last?.coordinate {
            locationCoordinate.accept(coordinate)
            print("==", locationCoordinate.values)
            print("== \\(#function)", coordinate)
        }
        
        locationUpdateSubject.onNext(())
        stop()
    }