gitextract_axgr4pdw/ ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── LooLocator/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Image.imageset/ │ │ │ └── Contents.json │ │ └── location.imageset/ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.storyboard │ ├── Models/ │ │ └── Location.swift │ ├── Protocols/ │ │ ├── ApiResourceProviding.swift │ │ ├── Extensions/ │ │ │ ├── CLLocationManagerExtension.swift │ │ │ └── NetworkReqeustProvidingExtension.swift │ │ ├── Implementations/ │ │ │ ├── AmenityRequest.swift │ │ │ ├── AmentityResource.swift │ │ │ └── LocationProvider.swift │ │ ├── LocationManagerConfigurable.swift │ │ ├── LocationProvidable.swift │ │ └── NetworkRequestProviding.swift │ ├── ViewControllers/ │ │ └── ViewController.swift │ └── ViewModels/ │ └── AmenityViewModel.swift ├── LooLocator.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm/ │ │ └── Package.resolved │ └── xcshareddata/ │ └── xcschemes/ │ └── LooLocator.xcscheme ├── LooLocatorTests/ │ ├── AmenityMocks.swift │ ├── AmenityRequestTests.swift │ ├── ApiClientTests.swift │ ├── Info.plist │ ├── LocationMocks.swift │ ├── LocationProviderTests.swift │ ├── MapViewModelTests.swift │ ├── MockViewController.swift │ ├── OSMModelTests.swift │ └── stubbedRepsonse.json ├── README.md └── berlin.gpx