// // DirectionsView.swift // City Sights App // // Created by Milos Ilic on 17.1.23.. // import SwiftUI struct DirectionsView: View { var business: Business var body: some View { VStack (alignment: .leading) { // Business title HStack { BusinessTitle(business: business) Spacer() if let lat = business.coordinates?.latitude, let long = business.coordinates?.longitude, let name = business.name { Link("Open in Maps", destination: URL(string: "http://maps.apple.com/?ll=\(lat),\(long)&q=\(name.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)!)")!) } } .padding() // Directions map DirectionsMap(business: business) } .ignoresSafeArea(.all, edges: .bottom) } }