chore(TODOs): remove TODOs

This commit is contained in:
2024-11-27 14:55:15 +01:00
parent 67a1d71f94
commit 0e764b4238
2 changed files with 1 additions and 4 deletions

View File

@@ -28,10 +28,9 @@ struct ContentView: View {
// add "cancel" button that will hide the route // add "cancel" button that will hide the route
// add ability to hold on the map to place a mark (end goal) // add ability to hold on the map to place a mark (end goal)
// Display the calculated distance and how long will it take by walking // Display the calculated distance and how long will it take by walking
// Get walkingStepLength from HealthKit
// Show how many steps does the route take
// Get walkingSpeed // Get walkingSpeed
// show how long does the route take with said walking speed // show how long does the route take with said walking speed
// Add favorite locations - like home, work, etc (probably should be stored in core data tho:/)
var body: some View { var body: some View {
Map(position: $position) { Map(position: $position) {

View File

@@ -110,6 +110,4 @@ struct SearchItemView: View {
self.distance = response.routes.first?.distance self.distance = response.routes.first?.distance
} }
} }
// let address = location.placemark.title
} }