I am trying to follow the WWDC23' MapKit tutorial. Its simple enough to import MapKit and then declare the Map(). From there, I expect to see a Map preview off to the right, however, im only seeing the grid lines. It looks like the map isnt loading, so im assuming it cant find my location or something small like that. Any help would be greatly appreciated!
https://developer.apple.com/videos/play/wwdc2023/10043/
import SwiftUI
import MapKit
struct ContentView: View {
var body: some View {
Map()
}
}
#Preview {
ContentView()
}