From 0e764b42384039ecc819747ff420423933ef4be8 Mon Sep 17 00:00:00 2001 From: oliverhnat Date: Wed, 27 Nov 2024 14:55:15 +0100 Subject: [PATCH] chore(TODOs): remove TODOs --- StepMap/ContentView.swift | 3 +-- StepMap/SearchItemView.swift | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/StepMap/ContentView.swift b/StepMap/ContentView.swift index 7a88734..1cf9cc6 100644 --- a/StepMap/ContentView.swift +++ b/StepMap/ContentView.swift @@ -28,10 +28,9 @@ struct ContentView: View { // add "cancel" button that will hide the route // 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 - // Get walkingStepLength from HealthKit - // Show how many steps does the route take // Get walkingSpeed // 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 { Map(position: $position) { diff --git a/StepMap/SearchItemView.swift b/StepMap/SearchItemView.swift index acc4937..ded4e42 100644 --- a/StepMap/SearchItemView.swift +++ b/StepMap/SearchItemView.swift @@ -110,6 +110,4 @@ struct SearchItemView: View { self.distance = response.routes.first?.distance } } - - // let address = location.placemark.title }